diff options
Diffstat (limited to 'main/php.h')
-rw-r--r-- | main/php.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/main/php.h b/main/php.h index f19affd178..b0acc095c3 100644 --- a/main/php.h +++ b/main/php.h @@ -70,10 +70,6 @@ #ifdef NETWARE /* For php_get_uname() function */ #define PHP_UNAME "NetWare" -/* - * This is obtained using uname(2) on Unix and assigned in the case of Windows; - * we'll do it this way at least for now. - */ #define PHP_OS PHP_UNAME #endif @@ -208,11 +204,7 @@ char *strerror(int); #include "win32/pwd.h" #include "win32/param.h" #elif defined(NETWARE) -#ifdef NEW_LIBC #include <sys/param.h> -#else -#include "NetWare/param.h" -#endif #include "NetWare/pwd.h" # else #include <pwd.h> @@ -260,18 +252,8 @@ char *strerror(int); /* global variables */ extern pval *data; #if !defined(PHP_WIN32) -#ifdef NETWARE -#ifdef NEW_LIBC #define php_sleep sleep -#else /* NEW_LIBC */ -#define php_sleep delay /* sleep() and usleep() are not available */ -#define usleep delay -#endif /* NEW_LIBC */ -extern char **environ; -#else /* NETWARE */ extern char **environ; -#define php_sleep sleep -#endif /* NETWARE */ #endif /* !defined(PHP_WIN32) */ #ifdef PHP_PWRITE_64 |