chiark / gitweb /
[PATCH] sync up with the 0.84 version of klibc
[elogind.git] / klibc / klibc / include / syslog.h
index a58ef056743f986a4aa86de6776c934efb954cc5..551527a04228e9af110a799b83f0fb27e65fe7b8 100644 (file)
@@ -5,8 +5,8 @@
 #ifndef _SYSLOG_H
 #define _SYSLOG_H
 
+#include <stdio.h>
 #include <klibc/extern.h>
-#include <stdarg.h>
 
 /* Alert levels */
 #define LOG_EMERG      0
@@ -49,7 +49,7 @@
 
 __extern void openlog(const char *, int, int);
 __extern void syslog(int, const char *, ...);
+__extern void vsyslog(int, const char *, va_list);
 __extern void closelog(void);
-__extern void vsyslog(int, const char *format, va_list ap);
 
 #endif /* _SYSLOG_H */