diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/x86_64/bits/a.out.h | 4 |
2 files changed, 6 insertions, 3 deletions
@@ -1,5 +1,10 @@ 2012-05-16 H.J. Lu <hongjiu.lu@intel.com> + * sysdeps/unix/sysv/linux/x86_64/bits/a.out.h: Don't include + <bits/wordsize.h>. Check __x86_64__ instead of __WORDSIZE. + +2012-05-16 H.J. Lu <hongjiu.lu@intel.com> + * sysdeps/unix/sysv/linux/x86_64/bits/siginfo.h: New file. 2012-05-16 H.J. Lu <hongjiu.lu@intel.com> diff --git a/sysdeps/unix/sysv/linux/x86_64/bits/a.out.h b/sysdeps/unix/sysv/linux/x86_64/bits/a.out.h index 228a8d41af..0e4a7c911f 100644 --- a/sysdeps/unix/sysv/linux/x86_64/bits/a.out.h +++ b/sysdeps/unix/sysv/linux/x86_64/bits/a.out.h @@ -2,9 +2,7 @@ # error "Never use <bits/a.out.h> directly; include <a.out.h> instead." #endif -#include <bits/wordsize.h> - -#if __WORDSIZE == 64 +#ifdef __x86_64__ /* Signal to users of this header that this architecture really doesn't support a.out binary format. */ |