diff options
Diffstat (limited to 'sysdeps/posix/writev.c')
-rw-r--r-- | sysdeps/posix/writev.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sysdeps/posix/writev.c b/sysdeps/posix/writev.c index ef0058e25e..5ea5d058f7 100644 --- a/sysdeps/posix/writev.c +++ b/sysdeps/posix/writev.c @@ -38,7 +38,7 @@ ifree (char **ptrp) Operates just like 'write' (see <unistd.h>) except that the data are taken from VECTOR instead of a contiguous buffer. */ ssize_t -__libc_writev (int fd, const struct iovec *vector, int count) +__writev (int fd, const struct iovec *vector, int count) { /* Find the total number of bytes to be written. */ size_t bytes = 0; @@ -88,7 +88,4 @@ __libc_writev (int fd, const struct iovec *vector, int count) return bytes_written; } -#ifndef __libc_writev -strong_alias (__libc_writev, __writev) -weak_alias (__libc_writev, writev) -#endif +weak_alias (__writev, writev) |