diff options
author | Joseph Myers <joseph@codesourcery.com> | 2017-06-12 17:39:47 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2017-06-12 17:39:47 +0000 |
commit | 9527ae8291dbc6097f4f93c4ccce69b577f8a261 (patch) | |
tree | 07b852df35272170ee7e8502db3556420f70d6ea /conform | |
parent | a0f8b1152040d2652cdeb741ac586c95221dc5f0 (diff) | |
download | glibc-9527ae8291dbc6097f4f93c4ccce69b577f8a261.zip glibc-9527ae8291dbc6097f4f93c4ccce69b577f8a261.tar.gz glibc-9527ae8291dbc6097f4f93c4ccce69b577f8a261.tar.bz2 |
Fix XPG4 bsd_signal namespace (bug 21552).
bsd_signal was added in XPG4.2, so should be declared for
__USE_XOPEN_EXTENDED, instead of the present __USE_XOPEN condition.
This patch fixes the condition accordingly.
Tested for x86_64.
[BZ #21552]
* signal/signal.h (bsd_signal): Declare if [__USE_XOPEN_EXTENDED],
not [__USE_XOPEN].
* conform/Makefile (test-xfail-XPG4/signal.h/conform): Remove.
Diffstat (limited to 'conform')
-rw-r--r-- | conform/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/conform/Makefile b/conform/Makefile index 68f2e55..9ec41c7 100644 --- a/conform/Makefile +++ b/conform/Makefile @@ -161,7 +161,6 @@ test-xfail-XOPEN2K/ndbm.h/conform = yes test-xfail-XOPEN2K8/ndbm.h/conform = yes # Unsorted expected failures. -test-xfail-XPG4/signal.h/conform = yes test-xfail-XPG42/signal.h/conform = yes test-xfail-XPG42/sys/wait.h/conform = yes test-xfail-XPG42/ucontext.h/conform = yes |