musl/src/linux/klogctl.c

7 lines
114 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 syscall(SYS_syslog, type, buf, len);
2011-02-12 00:22:29 -05:00
}