diff options
author | Anantha Kesari H Y <hyanantha@php.net> | 2004-09-27 15:55:04 +0000 |
---|---|---|
committer | Anantha Kesari H Y <hyanantha@php.net> | 2004-09-27 15:55:04 +0000 |
commit | 549ec65eeebffb4b01707686724ea32d89fc04c4 (patch) | |
tree | f0e2df0dd8d0839cce498143d17b00a51cb19e13 | |
parent | 32788092dab78d2b76cd09558a0994eedf240e99 (diff) | |
download | php-git-549ec65eeebffb4b01707686724ea32d89fc04c4.tar.gz |
removed redundant NEW_LIBC checks
-rw-r--r-- | ext/standard/http_fopen_wrapper.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/ext/standard/http_fopen_wrapper.c b/ext/standard/http_fopen_wrapper.c index 2ae33765e8..db7e5ee54c 100644 --- a/ext/standard/http_fopen_wrapper.c +++ b/ext/standard/http_fopen_wrapper.c @@ -38,14 +38,6 @@ #ifdef PHP_WIN32 #define O_RDONLY _O_RDONLY #include "win32/param.h" -#elif defined(NETWARE) -/*#include <ws2nlm.h>*/ -/*#include <sys/socket.h>*/ -#ifdef NEW_LIBC -#include <sys/param.h> -#else -#include "netware/param.h" -#endif #else #include <sys/param.h> #endif @@ -60,7 +52,6 @@ #ifdef PHP_WIN32 #include <winsock2.h> #elif defined(NETWARE) && defined(USE_WINSOCK) -/*#include <ws2nlm.h>*/ #include <novsock2.h> #else #include <netinet/in.h> |