Files
2010-07-27 16:58:17 +00:00

15 lines
189 B
C

#include <stdlib.h>
#include <stdarg.h>
#include <proto/socket.h>
void syslog(ULONG pri, const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
vsyslog(pri, fmt, ap);
va_end(ap);
}