diff options
Diffstat (limited to 'sysdeps/generic/pread64.c')
-rw-r--r-- | sysdeps/generic/pread64.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sysdeps/generic/pread64.c b/sysdeps/generic/pread64.c index e1596038ac..64ed9e2013 100644 --- a/sysdeps/generic/pread64.c +++ b/sysdeps/generic/pread64.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1995, 1996, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1995, 1996, 1997, 1999 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -22,7 +22,7 @@ /* Read NBYTES into BUF from FD at the given position OFFSET without changing the file pointer. Return the number read or -1. */ ssize_t -__pread64 (int fd, void *buf, size_t nbytes, off64_t offset) +__libc_pread64 (int fd, void *buf, size_t nbytes, off64_t offset) { if (nbytes == 0) return 0; @@ -40,6 +40,7 @@ __pread64 (int fd, void *buf, size_t nbytes, off64_t offset) __set_errno (ENOSYS); return -1; } -weak_alias (__pread64, pread64) +strong_alias (__libc_pread64, __pread64) +weak_alias (__libc_pread64, pread64) stub_warning (pread64) #include <stub-tag.h> |