bitops.h 217 B

1234567891011121314
  1. #ifndef _ASMX86_BITOPS_H_
  2. #define _ASMX86_BITOPS_H_
  3. #ifndef _BITOPS_H_
  4. #error only <bitops.h> can be included directly
  5. #endif
  6. #ifdef __x86_64__
  7. #define BITS_PER_LONG 64
  8. #else
  9. #define BITS_PER_LONG 32
  10. #endif
  11. #endif