8102ee641c3047b5d12e3a9722bf50333c897a88
[musl] / klogctl.c
1 #include <sys/klog.h>
2 #include "syscall.h"
3
4 int klogctl (int type, char *buf, int len)
5 {
6         return syscall(SYS_syslog, type, buf, len);
7 }