aboutsummaryrefslogtreecommitdiff
#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