diff options
author | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-11-02 03:21:17 +0000 |
---|---|---|
committer | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-11-02 03:21:17 +0000 |
commit | 408df6cb4d5e38adca3f0dd13e94c48cec0e5d77 (patch) | |
tree | 7745002138fcf8d5ecec4cd7a3cb46ce4d5d673c /gcc/fixproto | |
parent | 4701adf2ebde0b489e883cd905a8cd0015d71233 (diff) | |
download | gcc-408df6cb4d5e38adca3f0dd13e94c48cec0e5d77.tar.gz |
(setjmp.h): Don't require siglongjmp and sigsetjmp.
They need sigjmp_buf, and are missing on many systems.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@5969 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fixproto')
-rwxr-xr-x | gcc/fixproto | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/fixproto b/gcc/fixproto index e826407e9b4..eccafcce46c 100755 --- a/gcc/fixproto +++ b/gcc/fixproto @@ -249,7 +249,8 @@ for code in ALL STD ; do pwd.h) required_list="getpwnam getpwuid" ;; setjmp.h) - required_list="longjmp setjmp siglongjmp sigsetjmp" ;; + # Left out siglongjmp sigsetjmp - these depend on sigjmp_buf. + required_list="longjmp setjmp" ;; signal.h) # Left out signal() - its prototype is too complex for us! # Also left out "sigaction sigaddset sigdelset sigemptyset |