unistd.h 400 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. #ifndef _UAPI_ASM_X86_UNISTD_H
  3. #define _UAPI_ASM_X86_UNISTD_H
  4. /* x32 syscall flag bit */
  5. #define __X32_SYSCALL_BIT 0x40000000
  6. #ifndef __KERNEL__
  7. # ifdef __i386__
  8. # include <asm/unistd_32.h>
  9. # elif defined(__ILP32__)
  10. # include <asm/unistd_x32.h>
  11. # else
  12. # include <asm/unistd_64.h>
  13. # endif
  14. #endif
  15. #endif /* _UAPI_ASM_X86_UNISTD_H */