blob: a640102f2a312c161270bee9e12c0e765dcdf7fa (
plain)
1
2
3
4
5
6
|
#if defined __X32_SYSCALL_BIT && defined __NR_read \
&& (__X32_SYSCALL_BIT & __NR_read) == __X32_SYSCALL_BIT
# define SYSCALL_BIT __X32_SYSCALL_BIT
#else
# define SYSCALL_BIT 0
#endif
|