diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-15 20:07:53 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-08-15 20:07:53 +0000 |
commit | ab9c44b1a41c9a17cd0f8a8f1e5517756ccb8bf0 (patch) | |
tree | 3a29ec44d7f37fc0a4e380531666413fa30d7e12 /include | |
parent | bb23c069191f18ed11b826371ed3571e214b41e3 (diff) | |
download | busybox-w32-ab9c44b1a41c9a17cd0f8a8f1e5517756ccb8bf0.tar.gz busybox-w32-ab9c44b1a41c9a17cd0f8a8f1e5517756ccb8bf0.tar.bz2 busybox-w32-ab9c44b1a41c9a17cd0f8a8f1e5517756ccb8bf0.zip |
v[hp]error_msg have 2-3 callsites only -> incorporate there.
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/libbb.h b/include/libbb.h index d60b410ae..6c6bec71e 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -649,15 +649,12 @@ extern void bb_error_msg(const char *s, ...) __attribute__ ((format (printf, 1, | |||
649 | extern void bb_error_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))); | 649 | extern void bb_error_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))); |
650 | extern void bb_perror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))); | 650 | extern void bb_perror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))); |
651 | extern void bb_perror_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))); | 651 | extern void bb_perror_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))); |
652 | extern void bb_vherror_msg(const char *s, va_list p); | ||
653 | extern void bb_herror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))); | 652 | extern void bb_herror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))); |
654 | extern void bb_herror_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))); | 653 | extern void bb_herror_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))); |
655 | extern void bb_perror_nomsg_and_die(void) ATTRIBUTE_NORETURN; | 654 | extern void bb_perror_nomsg_and_die(void) ATTRIBUTE_NORETURN; |
656 | extern void bb_perror_nomsg(void); | 655 | extern void bb_perror_nomsg(void); |
657 | extern void bb_info_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))); | 656 | extern void bb_info_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))); |
658 | /* These are used internally -- you shouldn't need to use them */ | ||
659 | extern void bb_verror_msg(const char *s, va_list p, const char *strerr); | 657 | extern void bb_verror_msg(const char *s, va_list p, const char *strerr); |
660 | extern void bb_vperror_msg(const char *s, va_list p); | ||
661 | 658 | ||
662 | 659 | ||
663 | /* applets which are useful from another applets */ | 660 | /* applets which are useful from another applets */ |