summaryrefslogtreecommitdiff
path: root/main/php.h
diff options
context:
space:
mode:
Diffstat (limited to 'main/php.h')
-rw-r--r--main/php.h11
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);