diff options
author | Alan Burlison <Alan.Burlison@uk.sun.com> | 2003-12-15 00:56:05 +0000 |
---|---|---|
committer | Alan Burlison <Alan.Burlison@uk.sun.com> | 2003-12-15 09:13:49 +0000 |
commit | ce676eea6c4628e5ffec61b310e00034b68892ad (patch) | |
tree | e9b947da775e9c8c8ad0fdbca5fe88c91c78fb8a /plan9 | |
parent | 773b92b84129affc6505f47aadd3c565fca48677 (diff) | |
download | perl-ce676eea6c4628e5ffec61b310e00034b68892ad.tar.gz |
Remove incorrect guards around inclusion of <signal.h>
Causes problems with UNIX03/SUSv3
Part 2 of change 21916 - oops!
See:
Message-Id: <3FDD06A5.8010004@sun.com>
Subject: Re: UNIX03 & C99 issue with 5.8.2
Date: Mon, 15 Dec 2003 00:56:05 +0000
p4raw-id: //depot/perl@21917
Diffstat (limited to 'plan9')
-rw-r--r-- | plan9/plan9ish.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/plan9/plan9ish.h b/plan9/plan9ish.h index 1469e10211..c3ae06790a 100644 --- a/plan9/plan9ish.h +++ b/plan9/plan9ish.h @@ -93,9 +93,7 @@ */ /* #define ALTERNATE_SHEBANG "#!" / **/ -#if !defined(NSIG) || defined(M_UNIX) || defined(__unix) || defined(M_XENIX) -# include <signal.h> -#endif +#include <signal.h> #ifndef SIGABRT # define SIGABRT SIGILL |