Add empty <netinet/tcp.h> for Windows
[fio.git] / os / windows / posix / include / syslog.h
1 #ifndef SYSLOG_H\r
2 #define SYSLOG_H\r
3 \r
4 int syslog();\r
5 \r
6 #define LOG_INFO        0x1\r
7 #define LOG_ERROR       0x2\r
8 #define LOG_WARN        0x4\r
9 \r
10 #define LOG_NDELAY      0x1\r
11 #define LOG_NOWAIT      0x2\r
12 #define LOG_PID         0x4\r
13 #define LOG_USER        0x8\r
14 \r
15 void closelog(void);\r
16 void openlog(const char *ident, int logopt, int facility);\r
17 \r
18 #endif /* SYSLOG_H */\r