From 2e51a14d57c3a2e6e2189d2a4c39f09023e4c524 Mon Sep 17 00:00:00 2001 From: Glenn L McGrath Date: Mon, 20 Jan 2003 23:50:59 +0000 Subject: New test mode that allows run_parts to fail silently if the directory is not found. Patch from Bastian Blank --- include/libbb.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include') diff --git a/include/libbb.h b/include/libbb.h index a827ba612..d67bf07ec 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -86,11 +86,11 @@ char *strtok_r(char *s, const char *delim, char **ptrptr); extern void show_usage(void) __attribute__ ((noreturn)); extern void error_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))); extern void error_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))); -extern void perror_msg(const char *s, ...); -extern void perror_msg_and_die(const char *s, ...) __attribute__ ((noreturn)); +extern void perror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))); +extern void perror_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))); extern void vherror_msg(const char *s, va_list p); -extern void herror_msg(const char *s, ...); -extern void herror_msg_and_die(const char *s, ...) __attribute__ ((noreturn)); +extern void herror_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))); +extern void herror_msg_and_die(const char *s, ...) __attribute__ ((noreturn, format (printf, 1, 2))); /* These two are used internally -- you shouldn't need to use them */ extern void verror_msg(const char *s, va_list p); -- cgit v1.2.3