blob: 30d7d04d72d6bad6dfb419f7606e8d5c8fd9b622 [file] [log] [blame]
Christopher Ferris25981132017-11-14 16:53:49 -08001/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
Christopher Ferris0437c522013-11-07 14:16:29 -08002#ifndef _UAPI_ASM_X86_UNISTD_H
3#define _UAPI_ASM_X86_UNISTD_H
4
5/* x32 syscall flag bit */
6#define __X32_SYSCALL_BIT 0x40000000
7
8#ifndef __KERNEL__
9# ifdef __i386__
10# include <asm/unistd_32.h>
11# elif defined(__ILP32__)
12# include <asm/unistd_x32.h>
13# else
14# include <asm/unistd_64.h>
15# endif
16#endif
17
18#endif /* _UAPI_ASM_X86_UNISTD_H */