summaryrefslogtreecommitdiff
path: root/main/php_syslog.h
diff options
context:
space:
mode:
Diffstat (limited to 'main/php_syslog.h')
-rw-r--r--main/php_syslog.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/main/php_syslog.h b/main/php_syslog.h
deleted file mode 100644
index c9abb8f0c6..0000000000
--- a/main/php_syslog.h
+++ /dev/null
@@ -1,32 +0,0 @@
-#ifndef PHP_SYSLOG_H
-#define PHP_SYSLOG_H
-
-#ifdef PHP_WIN32
-#include "win32/syslog.h"
-#else
-#include <syslog.h>
-#endif
-
-/*
- * SCO OpenServer 5 defines syslog to var_syslog/std_syslog which
- * causes trouble with our use of syslog. We define php_syslog
- * to be the system function syslog.
- */
-
-#ifdef syslog
-
-#if defined(var_syslog) && var_syslog == syslog
-#define php_syslog var_syslog
-#elif defined(std_syslog) && std_syslog == syslog
-#define php_syslog std_syslog
-#endif
-
-#endif
-
-#ifndef php_syslog
-#define php_syslog syslog
-#undef syslog
-#endif
-
-
-#endif