unistd.h 296 B

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