diff options
Diffstat (limited to 'libc-top-half/musl/src/linux/klogctl.c')
-rw-r--r-- | libc-top-half/musl/src/linux/klogctl.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/linux/klogctl.c b/libc-top-half/musl/src/linux/klogctl.c new file mode 100644 index 0000000..8102ee6 --- /dev/null +++ b/libc-top-half/musl/src/linux/klogctl.c @@ -0,0 +1,7 @@ +#include <sys/klog.h> +#include "syscall.h" + +int klogctl (int type, char *buf, int len) +{ + return syscall(SYS_syslog, type, buf, len); +} |