user.h 334 B

12345678910111213141516171819202122232425
  1. #ifndef _SYS_USER_H
  2. #define _SYS_USER_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include <limits.h>
  7. #include <stdint.h>
  8. #include <unistd.h>
  9. #include <bits/alltypes.h>
  10. #undef __WORDSIZE
  11. #if __LONG_MAX == 0x7fffffffL
  12. #define __WORDSIZE 32
  13. #else
  14. #define __WORDSIZE 64
  15. #endif
  16. #include <bits/user.h>
  17. #ifdef __cplusplus
  18. }
  19. #endif
  20. #endif