diff options
Diffstat (limited to 'clog.h')
-rw-r--r-- | clog.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,6 +1,8 @@ #ifndef _CLOG_H_ #define _CLOG_H_ -int lprintf(const char *format, ...); +#include <stdarg.h> + +int vlprintf(const char *format, va_list ap); #endif |