wordsize.h 165 B

1234567
  1. /* Determine the wordsize from the preprocessor defines. */
  2. #if defined __arch64__ || defined __sparcv9
  3. # define __WORDSIZE 64
  4. #else
  5. # define __WORDSIZE 32
  6. #endif