Changeset a46da63 in mainline for libc/include/err.h
- Timestamp:
- 2006-06-16T20:50:51Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 153a209
- Parents:
- b34fab6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libc/include/err.h
rb34fab6 ra46da63 27 27 */ 28 28 29 29 /** @addtogroup libc 30 30 * @{ 31 31 */ … … 36 36 #define _libc__ERR_H_ 37 37 38 #define errx(status,fmt,...) { printf((fmt),##__VA_ARGS__);_exit(status);} 38 #define errx(status, fmt, ...) { \ 39 printf((fmt), ##__VA_ARGS__); \ 40 _exit(status); \ 41 } 39 42 40 43 #endif 41 44 42 45 43 46 /** @} 44 47 */ 45 46
Note:
See TracChangeset
for help on using the changeset viewer.