1 /*
2  * klogctl() for uClibc
3  *
4  * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
5  *
6  * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
7  */
8 
9 #include <sys/syscall.h>
10 #include <unistd.h>
11 #include <sys/klog.h>
12 #define __NR__syslog		__NR_syslog
_syscall3(int,_syslog,int,type,char *,buf,int,len)13 static __inline__ _syscall3(int, _syslog, int, type, char *, buf, int, len)
14 int klogctl(int type, char *buf, int len)
15 {
16 	return (_syslog(type, buf, len));
17 }
18