Code

grep doc: add --break / --heading / -W to synopsis
[git.git] / compat / win32 / syslog.h
1 #ifndef SYSLOG_H
2 #define SYSLOG_H
4 #define LOG_PID     0x01
6 #define LOG_EMERG   0
7 #define LOG_ALERT   1
8 #define LOG_CRIT    2
9 #define LOG_ERR     3
10 #define LOG_WARNING 4
11 #define LOG_NOTICE  5
12 #define LOG_INFO    6
13 #define LOG_DEBUG   7
15 #define LOG_DAEMON  (3<<3)
17 void openlog(const char *ident, int logopt, int facility);
18 void syslog(int priority, const char *fmt, ...);
20 #endif /* SYSLOG_H */