mirror of
https://github.com/diegocr/libnix.git
synced 2026-09-14 04:30:33 +00:00
15 lines
189 B
C
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);
|
|
}
|
|
|