summaryrefslogtreecommitdiff
path: root/mg.c
diff options
context:
space:
mode:
authorAlan Burlison <Alan.Burlison@uk.sun.com>2003-12-12 23:04:52 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2003-12-12 23:54:25 +0000
commit308d26d578ee2df470607dca403b28c61f26c974 (patch)
tree9f5ac19046d049359b35edbb674078efe380e087 /mg.c
parent8df1e0a2b21ea34567b1f903327ae2a11bb9b86e (diff)
downloadperl-308d26d578ee2df470607dca403b28c61f26c974.tar.gz
Modify the common guard for the signal.h header, because
C99 compilers don't like it.o see : Subject: UNIX03 & C99 issue with 5.8.2 Message-ID: <3FDA4994.6050209@sun.com> p4raw-id: //depot/perl@21883
Diffstat (limited to 'mg.c')
-rw-r--r--mg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mg.c b/mg.c
index 4ef7910bd6..0cd694038a 100644
--- a/mg.c
+++ b/mg.c
@@ -398,7 +398,7 @@ Perl_mg_free(pTHX_ SV *sv)
}
-#if !defined(NSIG) || defined(M_UNIX) || defined(M_XENIX)
+#if !defined(NSIG) || defined(M_UNIX) || defined(__unix) || defined(M_XENIX)
#include <signal.h>
#endif