summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnantha Kesari H Y <hyanantha@php.net>2004-10-07 12:22:16 +0000
committerAnantha Kesari H Y <hyanantha@php.net>2004-10-07 12:22:16 +0000
commit940c5b393d92f04fab49b59e605364f17372e7dc (patch)
tree69dea7c9a1c8f15ddfe87d4c90a1bc8075add7a9
parent7dced12c320a09731f09e803c1ab1faf53e4803c (diff)
downloadphp-git-940c5b393d92f04fab49b59e605364f17372e7dc.tar.gz
removed unwanted NEW_LIBC checks for NETWARE and removing custom mktemp.h as LibC itself supports mkstemp functionality
-rw-r--r--main/php_open_temporary_file.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/main/php_open_temporary_file.c b/main/php_open_temporary_file.c
index b8c94528cd..3c9111c02d 100644
--- a/main/php_open_temporary_file.c
+++ b/main/php_open_temporary_file.c
@@ -31,18 +31,12 @@
#include "win32/winutil.h"
#elif defined(NETWARE)
#ifdef USE_WINSOCK
-/*#include <ws2nlm.h>*/
#include <novsock2.h>
#else
#include <sys/socket.h>
#endif
-#ifdef NEW_LIBC
#include <sys/param.h>
#else
-#include "netware/param.h"
-#endif
-#include "netware/mktemp.h"
-#else
#include <sys/param.h>
#include <sys/socket.h>
#include <netinet/in.h>