diff options
author | Anantha Kesari H Y <hyanantha@php.net> | 2005-02-21 09:17:30 +0000 |
---|---|---|
committer | Anantha Kesari H Y <hyanantha@php.net> | 2005-02-21 09:17:30 +0000 |
commit | 3e204f3e07ebcc443b92597d3fd4b912449595f4 (patch) | |
tree | d68873d19ebb8b1f6b1038647a979b961f1bdbbc | |
parent | 8bd83a53ac1562a097b5b1c4d67a81d9f559a984 (diff) | |
download | php-git-3e204f3e07ebcc443b92597d3fd4b912449595f4.tar.gz |
NetWare has pwd.h and removed unwanted check on NEW_LIBC while including param.h
-rw-r--r-- | ext/standard/pack.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ext/standard/pack.c b/ext/standard/pack.c index 12395e920f..3f1c872944 100644 --- a/ext/standard/pack.c +++ b/ext/standard/pack.c @@ -34,12 +34,8 @@ #else #include <sys/socket.h> #endif -#ifdef NEW_LIBC #include <sys/param.h> #else -#include "netware/param.h" -#endif -#else #include <sys/param.h> #endif #include "ext/standard/head.h" @@ -49,8 +45,6 @@ #if HAVE_PWD_H #ifdef PHP_WIN32 #include "win32/pwd.h" -#elif defined(NETWARE) -#include "netware/pwd.h" #else #include <pwd.h> #endif |