aboutsummaryrefslogtreecommitdiff
path: root/src/linux/klogctl.c
blob: a24f8769e4d9a2eee3ffc727832e41f8b6d8c047 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <sys/klog.h>
#include "syscall.h"

int klogctl (int type, char *buf, int len)
{
	return syscall(SYS_syslog, type, buf, len);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif