summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/x86_64/bits/wordsize.h
blob: e55524100eb378ca56dd76905f045927381578a7 (plain)
1
2
3
4
5
6
7
8
9
/* Determine the wordsize from the preprocessor defines.  */

#if defined __x86_64__
# define __WORDSIZE	64
/* This makes /var/run/utmp compatible with 32-bit environment: */
# define __WORDSIZE_COMPAT32	1
#else
# define __WORDSIZE	32
#endif