blob: 279da71c9207a0640124fe453b411408fd473546 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#ifndef PHP_SYSLOG_H
#define PHP_SYSLOG_H
#ifdef PHP_WIN32
#include "win32/syslog.h"
#else
#include "php_config.h"
#ifdef HAVE_SYSLOG_H
#include <syslog.h>
#endif
#endif
/*
* The SCO OpenServer 5 Development System (not the UDK)
* defines syslog to std_syslog.
*/
#ifdef syslog
#ifdef HAVE_STD_SYSLOG
#define php_syslog std_syslog
#endif
#undef syslog
#endif
#ifndef php_syslog
#define php_syslog syslog
#endif
#endif
|