7 lines
185 B
Plaintext
7 lines
185 B
Plaintext
|
#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
|