aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/posix_types.h
blob: bad3665c25fc3278f2cb00396e0b6d4147d77f85 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifdef __KERNEL__
# ifdef CONFIG_X86_32
#  include <asm/posix_types_32.h>
# else
#  include <asm/posix_types_64.h>
# endif
#else
# ifdef __i386__
#  include <asm/posix_types_32.h>
# elif defined(__ILP32__)
#  include <asm/posix_types_x32.h>
# else
#  include <asm/posix_types_64.h>
# endif
#endif