1 /* Determine the wordsize from the preprocessor defines.  */
2 
3 #if defined __s390x__
4 # define __WORDSIZE	64
5 #else
6 # define __WORDSIZE	32
7 # define __WORDSIZE32_SIZE_ULONG       1
8 # define __WORDSIZE32_PTRDIFF_LONG     0
9 #endif
10 
11 #define __WORDSIZE_TIME64_COMPAT32     0
12