finish unifying thread register handling in preparation for porting
[musl] / src / linux / klogctl.c
1 #define SYSCALL_STANDALONE
2 #include "syscall.h"
3
4 int klogctl (int type, char *buf, int len)
5 {
6         return syscall3(__NR_syslog, type, (long)buf, len);
7 }