mirror of
git://sourceware.org/git/glibc.git
synced 2024-12-27 04:41:02 +08:00
11 lines
352 B
C
11 lines
352 B
C
|
#ifndef _SYS_KLOG_H
|
||
|
#define _SYS_KLOG_H
|
||
|
|
||
|
/* Control the kernel's logging facility. This corresponds exactly to
|
||
|
the kernel's syslog system call, but that name is easily confused
|
||
|
with the user-level syslog facility, which is something completely
|
||
|
different. */
|
||
|
extern int klogctl __P((int type, char *bufp, int len));
|
||
|
|
||
|
#endif /* _SYS_KLOG_H */
|