blob: b8a39d6492225abb6bdafda261f05c11a83ee69e (
plain)
1
2
3
4
5
6
7
8
9
10
|
#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 */
|