2011-12-03 21:14:25 -05:00
|
|
|
/* Determine the wordsize from the preprocessor defines. */
|
|
|
|
|
|
|
|
#ifdef __LP64__
|
|
|
|
# define __WORDSIZE 64
|
2012-05-22 09:20:35 -04:00
|
|
|
# define __WORDSIZE_TIME64_COMPAT32 1
|
2011-12-03 21:14:25 -05:00
|
|
|
#else
|
|
|
|
# define __WORDSIZE 32
|
2016-11-04 09:37:44 -07:00
|
|
|
# define __WORDSIZE_TIME64_COMPAT32 0
|
|
|
|
# define __WORDSIZE32_SIZE_ULONG 0
|
|
|
|
# define __WORDSIZE32_PTRDIFF_LONG 0
|
2011-12-03 21:14:25 -05:00
|
|
|
#endif
|