6 lines
114 B
C
6 lines
114 B
C
#include "syscall.h"
|
|
|
|
int klogctl (int type, char *buf, int len)
|
|
{
|
|
return syscall(SYS_syslog, type, buf, len);
|
|
}
|