* sysdeps/x86_64/bits/wordsize.h: New file.
This commit is contained in:
Andreas Jaeger 2002-03-03 19:45:53 +00:00
parent 37de950b40
commit a06bb7ce88
2 changed files with 9 additions and 0 deletions

View File

@ -1,5 +1,7 @@
2002-03-03 Andreas Jaeger <aj@suse.de> 2002-03-03 Andreas Jaeger <aj@suse.de>
* sysdeps/x86_64/bits/wordsize.h: New file.
* elf/nodlopenmod2.c: Provide prototype to avoid warning. * elf/nodlopenmod2.c: Provide prototype to avoid warning.
* elf/tst-tlsmod1.c: Likewise. * elf/tst-tlsmod1.c: Likewise.

View File

@ -0,0 +1,7 @@
/* Determine the wordsize from the preprocessor defines. */
#if defined __x86_64__
# define __WORDSIZE 64
#else
# define __WORDSIZE 32
#endif