reg.h 244 B

123456789101112131415161718
  1. #ifndef _SYS_REG_H
  2. #define _SYS_REG_H
  3. #include <limits.h>
  4. #include <unistd.h>
  5. #include <bits/alltypes.h>
  6. #undef __WORDSIZE
  7. #if __LONG_MAX == 0x7fffffffL
  8. #define __WORDSIZE 32
  9. #else
  10. #define __WORDSIZE 64
  11. #endif
  12. #include <bits/reg.h>
  13. #endif