Changeset d6cc453 in mainline for libc/include/err.h
- Timestamp:
- 2006-06-02T19:22:08Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 53daee3
- Parents:
- e87e18f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libc/include/err.h
re87e18f rd6cc453 30 30 #define _libc__ERR_H_ 31 31 32 extern void errx (int __status, __const char *__format, ...) 33 __attribute__ ((__noreturn__, __format__ (__printf__, 2, 3))); 32 #define errx(status,fmt,...) { printf((fmt),##__VA_ARGS__);_exit(status);} 34 33 35 34 #endif
Note:
See TracChangeset
for help on using the changeset viewer.