2002-03-03 19:45:53 +00:00
|
|
|
/* Determine the wordsize from the preprocessor defines. */
|
|
|
|
|
2012-04-13 16:17:14 -07:00
|
|
|
#if defined __x86_64__ && !defined __ILP32__
|
2002-03-03 19:45:53 +00:00
|
|
|
# define __WORDSIZE 64
|
|
|
|
#else
|
|
|
|
# define __WORDSIZE 32
|
|
|
|
#endif
|
2012-05-21 11:45:16 -07:00
|
|
|
|
|
|
|
#ifdef __x86_64__
|
2012-05-21 13:39:55 -07:00
|
|
|
# define __WORDSIZE_TIME64_COMPAT32 1
|
2012-05-21 11:45:16 -07:00
|
|
|
/* Both x86-64 and x32 use the 64-bit system call interface. */
|
|
|
|
# define __SYSCALL_WORDSIZE 64
|
|
|
|
#endif
|