diff options
author | Anantha Kesari H Y <hyanantha@php.net> | 2003-01-03 12:48:14 +0000 |
---|---|---|
committer | Anantha Kesari H Y <hyanantha@php.net> | 2003-01-03 12:48:14 +0000 |
commit | 3e2f1526bc4eb3a6c63969064bf37db85220d80a (patch) | |
tree | 6ca09da55c67b7dd42a35a2ac4841539e29821b8 /main/php.h | |
parent | a1402eebf1ca331b0c67fcbdec94215165d90d6a (diff) | |
download | php-git-3e2f1526bc4eb3a6c63969064bf37db85220d80a.tar.gz |
A new file added and some old files modified for NetWare.
Diffstat (limited to 'main/php.h')
-rw-r--r-- | main/php.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/main/php.h b/main/php.h index 40ecc32e55..6cd191453a 100644 --- a/main/php.h +++ b/main/php.h @@ -244,18 +244,17 @@ extern pval *data; #if !defined(PHP_WIN32) #ifdef NETWARE #ifdef NEW_LIBC -/*#undef environ*/ /* For now, so that our 'environ' implementation is used */ #define php_sleep sleep -#else +#else /* NEW_LIBC */ #define php_sleep delay /* sleep() and usleep() are not available */ #define usleep delay -#endif +#endif /* NEW_LIBC */ extern char **environ; -#else +#else /* NETWARE */ extern char **environ; #define php_sleep sleep -#endif -#endif +#endif /* NETWARE */ +#endif /* !defined(PHP_WIN32) */ #ifdef PHP_PWRITE_64 ssize_t pwrite(int, void *, size_t, off64_t); |