summaryrefslogtreecommitdiff
path: root/pp_sys.c
diff options
context:
space:
mode:
authorBrian Fraser <fraserbn@gmail.com>2014-06-03 18:58:50 +0200
committerBrian Fraser <fraserbn@gmail.com>2014-06-11 23:22:01 +0200
commitf05550c064c2736017a5c65739d9eee325eed149 (patch)
tree0683d5b400decb18f981f8b2e310ae4ea3c28911 /pp_sys.c
parent27d9ebc5085bbcf931d590338a1dda72490bbd9c (diff)
downloadperl-f05550c064c2736017a5c65739d9eee325eed149.tar.gz
Removed NeXT support
Diffstat (limited to 'pp_sys.c')
-rw-r--r--pp_sys.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/pp_sys.c b/pp_sys.c
index 74ee0722e8..e30433fc0f 100644
--- a/pp_sys.c
+++ b/pp_sys.c
@@ -179,10 +179,6 @@ static const char zero_but_true[ZBTLEN + 1] = "0 but true";
# include <sys/access.h>
#endif
-#if defined(HAS_FCNTL) && defined(F_SETFD) && !defined(FD_CLOEXEC)
-# define FD_CLOEXEC 1 /* NeXT needs this */
-#endif
-
#include "reentr.h"
#ifdef __Lynx__
@@ -1155,7 +1151,7 @@ PP(pp_sselect)
/* If SELECT_MIN_BITS is greater than one we most probably will want
* to align the sizes with SELECT_MIN_BITS/8 because for example
* in many little-endian (Intel, Alpha) systems (Linux, OS/2, Digital
- * UNIX, Solaris, NeXT, Darwin) the smallest quantum select() operates
+ * UNIX, Solaris, Darwin) the smallest quantum select() operates
* on (sets/tests/clears bits) is 32 bits. */
growsize = maxlen + (SELECT_MIN_BITS/8 - (maxlen % (SELECT_MIN_BITS/8)));
# endif