mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-23 13:30:06 +00:00
10 lines
151 B
C
10 lines
151 B
C
|
#include <bits/wordsize.h>
|
||
|
|
||
|
#if __WORDSIZE == 32
|
||
|
# define PREADV preadv64
|
||
|
# define PREAD __pread64
|
||
|
# define OFF_T off64_t
|
||
|
|
||
|
# include "preadv.c"
|
||
|
#endif
|