Illegal cpp.
Jarkko Hietaniemi [Sat, 14 Jun 2003 07:07:38 +0000 (07:07 +0000)]
p4raw-id: //depot/perl@19772

util.c

diff --git a/util.c b/util.c
index fa1aebc..597452c 100644 (file)
--- a/util.c
+++ b/util.c
@@ -2200,7 +2200,7 @@ Perl_rsignal(pTHX_ int signo, Sighandler_t handler)
     if (PL_signals & PERL_SIGNALS_UNSAFE_FLAG)
         act.sa_flags |= SA_RESTART;    /* SVR4, 4.3+BSD */
 #endif
-#ifdef SA_NOCLDWAIT && !defined(BSDish) /* See [perl #18849] */
+#if defined(SA_NOCLDWAIT) && !defined(BSDish) /* See [perl #18849] */
     if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
        act.sa_flags |= SA_NOCLDWAIT;
 #endif