[BusyBox-cvs] busybox/include libbb.h,1.91,1.92
Glenn McGrath
bug1 at busybox.net
Mon Jan 20 23:51:01 UTC 2003
Update of /var/cvs/busybox/include
In directory winder:/tmp/cvs-serv12093/include
Modified Files:
libbb.h
Log Message:
New test mode that allows run_parts to fail silently if the directory
is not found. Patch from Bastian Blank
Index: libbb.h
===================================================================
RCS file: /var/cvs/busybox/include/libbb.h,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -d -r1.91 -r1.92
--- libbb.h 13 Jan 2003 22:09:47 -0000 1.91
+++ libbb.h 20 Jan 2003 23:50:57 -0000 1.92
@@ -86,11 +86,11 @@
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);
More information about the busybox-cvs
mailing list