1 /* Determine the wordsize from the preprocessor defines. */ 2 3 #if defined __x86_64__ && !defined __ILP32__ 4 # define __WORDSIZE 64 5 #else 6 # define __WORDSIZE 32 7 #endif 8 9 #ifdef __x86_64__ 10 /* This makes /var/run/utmp compatible with 32-bit environment: */ 11 # define __WORDSIZE_TIME64_COMPAT32 1 12 #endif 13