Forgot to commit SYSLOG_FACILITY_INDEX() macro.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5799 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2003-12-30 00:20:40 +00:00
parent bde0ae2e7d
commit 3c45d8cea9

View File

@ -30,5 +30,6 @@ struct syslog_message {
#define SYSLOG_PRIORITY(options) ((options) & 0x7)
#define SYSLOG_FACILITY(options) ((options) & 0x03f8)
#define SYSLOG_FACILITY_INDEX(options) (SYSLOG_FACILITY(options) >> 3)
#endif /* SYSLOG_DAEMON_H */