summaryrefslogtreecommitdiff
path: root/pp_sys.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-12-07 09:33:50 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-12-07 09:33:50 +0000
commit5014db98d2c6d95f1afa45bfa9fe6b1ddb1a9dc2 (patch)
tree2fb1f5af2de558e496a4f54bca78c3b12853f354 /pp_sys.c
parent014822e4c0d7b7cfffc319235fe7ea64ec87ecae (diff)
downloadperl-5014db98d2c6d95f1afa45bfa9fe6b1ddb1a9dc2.tar.gz
typos in change#4660
p4raw-link: @4660 on //depot/perl: 014822e4c0d7b7cfffc319235fe7ea64ec87ecae p4raw-id: //depot/perl@4661
Diffstat (limited to 'pp_sys.c')
-rw-r--r--pp_sys.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pp_sys.c b/pp_sys.c
index 8a1c98ce04..d853f6c26b 100644
--- a/pp_sys.c
+++ b/pp_sys.c
@@ -3602,7 +3602,7 @@ PP(pp_fork)
PUSHi(childpid);
RETURN;
#else
-# if defined(USE_ITHREADS) && defined(USE_IMPLICIT_SYS)
+# if defined(USE_ITHREADS) && defined(PERL_IMPLICIT_SYS)
djSP; dTARGET;
Pid_t childpid;
@@ -3800,7 +3800,7 @@ PP(pp_exec)
#endif
}
-#if !defined(HAS_FORK) && defined(USE_ITHREADS) && defined(USE_IMPLICIT_SYS)
+#if !defined(HAS_FORK) && defined(USE_ITHREADS) && defined(PERL_IMPLICIT_SYS)
if (value >= 0)
my_exit(value);
#endif