diff options
Diffstat (limited to 'misc/readv.c')
-rw-r--r-- | misc/readv.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/misc/readv.c b/misc/readv.c index 5cc24eba25..a624e789cd 100644 --- a/misc/readv.c +++ b/misc/readv.c @@ -25,7 +25,7 @@ Operates just like `read' (see <unistd.h>) except that data are put in VECTOR instead of a contiguous buffer. */ ssize_t -__libc_readv (fd, vector, count) +__readv (fd, vector, count) int fd; const struct iovec *vector; int count; @@ -33,7 +33,6 @@ __libc_readv (fd, vector, count) __set_errno (ENOSYS); return -1; } -strong_alias (__libc_readv, __readv) -weak_alias (__libc_readv, readv) +weak_alias (__readv, readv) stub_warning (readv) |