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

#if defined __x86_64__ && !defined __ILP32__
# define __WORDSIZE	64
# define __WORDSIZE_COMPAT32	1
#else
# define __WORDSIZE	32
#endif