musl/src/linux/klogctl.c

7 lines
114 B
C

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