add acct, accept4, setns, and dup3 syscalls (linux extensions)
[musl] / src / linux / klogctl.c
1 #include "syscall.h"
2
3 int klogctl (int type, char *buf, int len)
4 {
5         return syscall(SYS_syslog, type, buf, len);
6 }