1#if !defined ISO && !defined ISO99 && !defined ISO11 && !defined POSIX && !defined POSIX2008 && !defined XPG4
2constant LOG_PID
3constant LOG_CONS
4constant LOG_NDELAY
5constant LOG_ODELAY
6constant LOG_NOWAIT
7
8constant LOG_KERN
9constant LOG_USER
10constant LOG_MAIL
11constant LOG_NEWS
12constant LOG_UUCP
13constant LOG_DAEMON
14constant LOG_AUTH
15constant LOG_CRON
16constant LOG_LPR
17constant LOG_LOCAL0
18constant LOG_LOCAL1
19constant LOG_LOCAL2
20constant LOG_LOCAL3
21constant LOG_LOCAL4
22constant LOG_LOCAL5
23constant LOG_LOCAL6
24constant LOG_LOCAL7
25
26macro LOG_MASK
27
28constant LOG_EMERG
29constant LOG_ALERT
30constant LOG_CRIT
31constant LOG_ERR
32constant LOG_WARNING
33constant LOG_NOTICE
34constant LOG_INFO
35constant LOG_DEBUG
36
37function void closelog (void)
38function void openlog (const char*, int, int)
39function int setlogmask (int)
40function void syslog (int, const char*, ...)
41
42allow LOG_*
43allow *_t
44#endif
45