wordsize.h 297 B

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