From: Andreas Jaeger Date: Sun, 3 Mar 2002 19:45:53 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/glibc-2-3~1018 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a06bb7ce8829e123c996c50302b557af803bd1de;p=thirdparty%2Fglibc.git Update. * sysdeps/x86_64/bits/wordsize.h: New file. --- diff --git a/ChangeLog b/ChangeLog index c266b02a84a..a350421dcd1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2002-03-03 Andreas Jaeger + * sysdeps/x86_64/bits/wordsize.h: New file. + * elf/nodlopenmod2.c: Provide prototype to avoid warning. * elf/tst-tlsmod1.c: Likewise. diff --git a/sysdeps/x86_64/bits/wordsize.h b/sysdeps/x86_64/bits/wordsize.h new file mode 100644 index 00000000000..e96a9f1add8 --- /dev/null +++ b/sysdeps/x86_64/bits/wordsize.h @@ -0,0 +1,7 @@ +/* Determine the wordsize from the preprocessor defines. */ + +#if defined __x86_64__ +# define __WORDSIZE 64 +#else +# define __WORDSIZE 32 +#endif