1
0

klogctl.c 136 B

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