mirror of
https://github.com/fluencelabs/musl
synced 2025-06-05 19:11:34 +00:00
7 lines
122 B
C
7 lines
122 B
C
|
#include "syscall.h"
|
||
|
|
||
|
int klogctl (int type, char *buf, int len)
|
||
|
{
|
||
|
return syscall3(__NR_syslog, type, (long)buf, len);
|
||
|
}
|