wordsize.h 242 B

123456789
  1. /* Determine the wordsize from the preprocessor defines. */
  2. #if defined __x86_64__
  3. # define __WORDSIZE 64
  4. /* This makes /var/run/utmp compatible with 32-bit environment: */
  5. # define __WORDSIZE_COMPAT32 1
  6. #else
  7. # define __WORDSIZE 32
  8. #endif