diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/preadv.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/preadv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/preadv.c b/sysdeps/unix/sysv/linux/preadv.c index ecabc8c9c6..d03ce8dc5c 100644 --- a/sysdeps/unix/sysv/linux/preadv.c +++ b/sysdeps/unix/sysv/linux/preadv.c @@ -33,7 +33,7 @@ preadv (int fd, const struct iovec *vector, int count, off_t offset) } # else static ssize_t __atomic_preadv_replacement (int, const struct iovec *, - int, off_t) internal_function; + int, off_t); ssize_t preadv (int fd, const struct iovec *vector, int count, off_t offset) { @@ -45,7 +45,7 @@ preadv (int fd, const struct iovec *vector, int count, off_t offset) # endif return __atomic_preadv_replacement (fd, vector, count, offset); } -# define PREADV static internal_function __atomic_preadv_replacement +# define PREADV static __atomic_preadv_replacement # define PREAD __pread # define OFF_T off_t # include <sysdeps/posix/preadv_common.c> |