wordsize.h 179 B

12345678
  1. /* Determine the wordsize from the preprocessor defines. */
  2. #if defined __x86_64__
  3. # define __WORDSIZE 64
  4. /*# define __WORDSIZE_COMPAT32 1*/
  5. #else
  6. # define __WORDSIZE 32
  7. #endif