wordsize.h 137 B

1234567
  1. /* Determine the wordsize from the preprocessor defines. */
  2. #ifdef __LP64__
  3. # define __WORDSIZE 64
  4. #else
  5. # define __WORDSIZE 32
  6. #endif