about summary refs log tree commit diff
path: root/sysdeps/x86_64/bits/wordsize.h
blob: e96a9f1add8d5e553d59cf0e8b60c80c64cb3600 (plain) (blame)
1
2
3
4
5
6
7
/* Determine the wordsize from the preprocessor defines.  */

#if defined __x86_64__
# define __WORDSIZE	64
#else
# define __WORDSIZE	32
#endif