#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
-#if (WIN32|WINNT)
+#if PHP_WIN32
#include <windows.h>
#include <winsock.h>
#define O_RDONLY _O_RDONLY
#include "php_zlib.h"
#include "fopen-wrappers.h"
#if HAVE_PWD_H
-#if WIN32|WINNT
+#if PHP_WIN32
#include "win32/pwd.h"
#else
#include <pwd.h>
#endif
#include "snprintf.h"
#if HAVE_ZLIB
-#if defined(HAVE_UNISTD_H) && (WIN32|WINNT)
+#if defined(HAVE_UNISTD_H) && PHP_WIN32
#undef HAVE_UNISTD_H
#endif
}
/* Absolute path open - prepend document_root in safe mode */
-#if WIN32|WINNT
+#if PHP_WIN32
if ((*filename == '\\')||(*filename == '/')||(filename[1] == ':')) {
#else
if (*filename == '/') {
ptr = pathbuf;
while (ptr && *ptr) {
-#if WIN32|WINNT
+#if PHP_WIN32
end = strchr(ptr, ';');
#else
end = strchr(ptr, ':');