unistd.h 337 B

123456789101112131415161718
  1. #ifndef _UAPI_ASM_X86_UNISTD_H
  2. #define _UAPI_ASM_X86_UNISTD_H
  3. /* x32 syscall flag bit */
  4. #define __X32_SYSCALL_BIT 0x40000000
  5. #ifndef __KERNEL__
  6. # ifdef __i386__
  7. # include <asm/unistd_32.h>
  8. # elif defined(__ILP32__)
  9. # include <asm/unistd_x32.h>
  10. # else
  11. # include <asm/unistd_64.h>
  12. # endif
  13. #endif
  14. #endif /* _UAPI_ASM_X86_UNISTD_H */