summaryrefslogtreecommitdiff
path: root/main/php_syslog.h
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>2000-06-09 15:42:50 +0000
committerSVN Migration <svn@php.net>2000-06-09 15:42:50 +0000
commit133d50b882e08187c803105493c5609088076ab5 (patch)
treee7fcf3106cad2ac7a449bfd2b96a25f5d9abc7af /main/php_syslog.h
parent03e842ccb8fb54bb33e7430e584ed6c2b00b9856 (diff)
downloadphp-git-PRE_EIGHT_BYTE_ALLOC_PATCH.tar.gz
This commit was manufactured by cvs2svn to create tagPRE_EIGHT_BYTE_ALLOC_PATCH
'PRE_EIGHT_BYTE_ALLOC_PATCH'.
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