diff options
author | Guillem Jover <guillem@hadrons.org> | 2009-05-25 09:12:45 +0200 |
---|---|---|
committer | Guillem Jover <guillem@hadrons.org> | 2009-05-25 09:12:45 +0200 |
commit | 61fa98ea9e288abb4aa5b12be8fed9f73e2a1a9c (patch) | |
tree | d28867e624f1f89f7445e6045aa8b2afeac57486 | |
parent | 931e04343038cfc543f6d931488e597c9bee2d7e (diff) | |
download | libbsd-61fa98ea9e288abb4aa5b12be8fed9f73e2a1a9c.tar.gz |
Add missing <stdarg.h> include in <bsd/err.h>
-rw-r--r-- | include/bsd/err.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/bsd/err.h b/include/bsd/err.h index b8f9c82..d60158e 100644 --- a/include/bsd/err.h +++ b/include/bsd/err.h @@ -28,6 +28,7 @@ #define LIBBSD_ERR_H #include <err.h> +#include <stdarg.h> extern void warnc (int code, const char *format, ...); extern void vwarnc (int code, const char *format, va_list ap); |