/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */1#ifndef _UAPI_ASM_X86_UNISTD_H2#define _UAPI_ASM_X86_UNISTD_H34/*5* x32 syscall flag bit. Some user programs expect syscall NR macros6* and __X32_SYSCALL_BIT to have type int, even though syscall numbers7* are, for practical purposes, unsigned long.8*9* Fortunately, expressions like (nr & ~__X32_SYSCALL_BIT) do the right10* thing regardless.11*/12#define __X32_SYSCALL_BIT 0x400000001314#ifndef __KERNEL__15# ifdef __i386__16# include <asm/unistd_32.h>17# elif defined(__ILP32__)18# include <asm/unistd_x32.h>19# else20# include <asm/unistd_64.h>21# endif22#endif2324#endif /* _UAPI_ASM_X86_UNISTD_H */252627