#define _SYSLOG_H
#include <klibc/extern.h>
+#include <stdarg.h>
/* Alert levels */
#define LOG_EMERG 0
__extern void openlog(const char *, int, int);
__extern void syslog(int, const char *, ...);
__extern void closelog(void);
+__extern void vsyslog(int, const char *format, va_list ap);
#endif /* _SYSLOG_H */
id[MAXID] = '\0'; /* Make sure it's null-terminated */
}
-void syslog(int prio, const char *format, ...)
+void vsyslog(int prio, const char *format, va_list ap)
{
- va_list ap;
char buf[BUFLEN];
int rv, len;
int fd;
if ( *id )
len += sprintf(buf+3, "%s: ", id);
- va_start(ap, format);
rv = vsnprintf(buf+len, BUFLEN-len, format, ap);
- va_end(ap);
len += rv;
if ( len > BUFLEN-1 ) len = BUFLEN-1;
write(fd, buf, len+1);
}
+
+void syslog(int prio, const char *format, ...)
+{
+ va_list ap;
+
+ va_start(ap, format);
+ vsyslog(prio, format, ap);
+ va_end(ap);
+}