musl-tcc/src/linux/klogctl.c

8 lines
136 B
C

#include <sys/klog.h>
#include "syscall.h"
int klogctl (int type, char *buf, int len)
{
return syscall(SYS_syslog, type, buf, len);
}