]> git.proxmox.com Git - wasi-libc.git/blob - libc-top-half/musl/src/linux/klogctl.c
WASI libc prototype implementation.
[wasi-libc.git] / libc-top-half / musl / src / linux / klogctl.c
1 #include <sys/klog.h>
2 #include "syscall.h"
3
4 int klogctl (int type, char *buf, int len)
5 {
6 return syscall(SYS_syslog, type, buf, len);
7 }