diff options
Diffstat (limited to 'busybox.h')
-rw-r--r-- | busybox.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -89,10 +89,10 @@ extern const struct BB_applet applets[]; | |||
89 | extern const char *applet_name; | 89 | extern const char *applet_name; |
90 | 90 | ||
91 | extern void show_usage(void) __attribute__ ((noreturn)); | 91 | extern void show_usage(void) __attribute__ ((noreturn)); |
92 | extern void error_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))); | 92 | extern void error_msg(const char *s, ...); |
93 | extern void error_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))); | 93 | extern void error_msg_and_die(const char *s, ...) __attribute__ ((noreturn)); |
94 | extern void perror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))); | 94 | extern void perror_msg(const char *s, ...); |
95 | extern void perror_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))); | 95 | extern void perror_msg_and_die(const char *s, ...) __attribute__ ((noreturn)); |
96 | 96 | ||
97 | const char *mode_string(int mode); | 97 | const char *mode_string(int mode); |
98 | const char *time_string(time_t timeVal); | 98 | const char *time_string(time_t timeVal); |