musl/src/linux/klogctl.c

7 lines
122 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#include "syscall.h"
int klogctl (int type, char *buf, int len)
{
return syscall3(__NR_syslog, type, (long)buf, len);
}