diff options
author | David S. Miller <davem@davemloft.net> | 2014-04-30 13:37:04 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-04-30 13:37:04 -0700 |
commit | 1d3d93ef73c7712a7b903140e524f081d349865b (patch) | |
tree | 9865c76db4a7629769cb8f42339a6b4e12935848 | |
parent | 8aa583c3e0cffae3f8fa9693fc808b869d55e00d (diff) | |
download | glibc-1d3d93ef73c7712a7b903140e524f081d349865b.tar.gz glibc-1d3d93ef73c7712a7b903140e524f081d349865b.tar.xz glibc-1d3d93ef73c7712a7b903140e524f081d349865b.zip |
Correct sparc CPP guards for EMT_TAGOVF.
* sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (EMT_TAGOVF): Protect with __USE_GNU instead of XOPEN cpp guards.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/sparc/bits/siginfo.h | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index a6ffe0878f..44ddb28103 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2014-04-30 David S. Miller <davem@davemloft.net> + * sysdeps/unix/sysv/linux/sparc/bits/siginfo.h (EMT_TAGOVF): Protect + with __USE_GNU instead of XOPEN cpp guards. + * sysdeps/sparc/bits/string.h (_STRING_ARCH_unaligned): Define to 0. diff --git a/sysdeps/unix/sysv/linux/sparc/bits/siginfo.h b/sysdeps/unix/sysv/linux/sparc/bits/siginfo.h index fcf83c5176..5b74d01756 100644 --- a/sysdeps/unix/sysv/linux/sparc/bits/siginfo.h +++ b/sysdeps/unix/sysv/linux/sparc/bits/siginfo.h @@ -278,7 +278,7 @@ enum }; # endif -# if defined __USE_XOPEN_EXTENDED || defined __USE_XOPEN2K8 +# if defined __USE_GNU /* `si_code' values for SIGEMT signal. */ enum { |