209ae7421b0088fc3238eed2573cfab9e30358ac
[musl] / 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 }