klogctl.c 114 B

123456
  1. #include "syscall.h"
  2. int klogctl (int type, char *buf, int len)
  3. {
  4. return syscall(SYS_syslog, type, buf, len);
  5. }