xref: /aosp_15_r20/external/musl/src/linux/klogctl.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include <sys/klog.h>
2 #include "syscall.h"
3 
klogctl(int type,char * buf,int len)4 int klogctl (int type, char *buf, int len)
5 {
6 	return syscall(SYS_syslog, type, buf, len);
7 }
8