diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2012-05-16 10:35:34 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2012-05-16 10:35:34 -0700 |
commit | 34683bb01bd2c65e1d124bf54e13f3c54779efd0 (patch) | |
tree | 692b82055f6b522379d7f4e2089ac5789a683e04 /sysdeps | |
parent | 84a68786746cd3f81b58f692d949df146790f3a9 (diff) | |
download | glibc-34683bb01bd2c65e1d124bf54e13f3c54779efd0.zip glibc-34683bb01bd2c65e1d124bf54e13f3c54779efd0.tar.gz glibc-34683bb01bd2c65e1d124bf54e13f3c54779efd0.tar.bz2 |
Check __x86_64__ in x86_64/bits/a.out.h
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/x86_64/bits/a.out.h | 4 |
1 files changed, 1 insertions, 3 deletions
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 228a8d4..0e4a7c9 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. */ |