diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-01-15 14:04:57 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-01-15 14:04:57 +0000 |
commit | 7ca61b6f3379bf66b446617b8834d92c13b366dd (patch) | |
tree | c0aaacfeb97a9bc74e73f8ff36ecbf1fd173808b /include/libbb.h | |
parent | 8c9daa12dcb4c1aa8f0f475896c9cfbcfb38370d (diff) | |
download | busybox-w32-7ca61b6f3379bf66b446617b8834d92c13b366dd.tar.gz busybox-w32-7ca61b6f3379bf66b446617b8834d92c13b366dd.tar.bz2 busybox-w32-7ca61b6f3379bf66b446617b8834d92c13b366dd.zip |
- shared libbusybox.
- IMA compilation option (aka IPO, IPA,..)
Please holler if i broke something..
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index e9a828c52..2e697a350 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -86,7 +86,7 @@ | |||
86 | #define MAX(a,b) (((a)>(b))?(a):(b)) | 86 | #define MAX(a,b) (((a)>(b))?(a):(b)) |
87 | #endif | 87 | #endif |
88 | 88 | ||
89 | extern void bb_show_usage(void) __attribute__ ((noreturn)); | 89 | extern void bb_show_usage(void) __attribute__ ((noreturn, externally_visible)); |
90 | extern void bb_error_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))); | 90 | extern void bb_error_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))); |
91 | extern void bb_error_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))); | 91 | extern void bb_error_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))); |
92 | extern void bb_perror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))); | 92 | extern void bb_perror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))); |