summaryrefslogtreecommitdiff
path: root/perl.h
diff options
context:
space:
mode:
Diffstat (limited to 'perl.h')
-rw-r--r--perl.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/perl.h b/perl.h
index 1858803c82..60cd79c3e2 100644
--- a/perl.h
+++ b/perl.h
@@ -145,10 +145,6 @@ register struct op *op asm(stringify(OP_IN_REGISTER));
# define DONT_DECLARE_STD 1
#endif
-#if defined(NeXT) && !defined(_POSIX_SOURCE)
-# define MISSING_PID_T
-#endif
-
#if defined(HASVOLATILE) || defined(STANDARD_C)
# ifdef __cplusplus
# define VOL // to temporarily suppress warnings
@@ -165,10 +161,6 @@ register struct op *op asm(stringify(OP_IN_REGISTER));
#define TAINT_ENV() if (tainting) { taint_env(); }
#define TAINT_PROPER(s) if (tainting) { taint_proper(no_security, s); }
-#ifdef MISSING_PID_T
-typedef int pid_t;
-#endif
-
/* XXX All process group stuff is handled in pp_sys.c. Should these
defines move there? If so, I could simplify this a lot. --AD 9/96.
*/
@@ -1136,6 +1128,8 @@ union any {
#include "hv.h"
#include "mg.h"
#include "scope.h"
+#include "bytecode.h"
+#include "byterun.h"
/* Current curly descriptor */
typedef struct curcur CURCUR;