mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 15:20:10 +00:00
e19c95fd5e
Continuing the removal of __libc_* function names that are no longer used anywhere, this patch removes the __libc_readv and __libc_writev names. Tested for x86_64 that stripped installed shared libraries are unchanged by the patch. * include/sys/uio.h (__libc_readv): Remove declaration. (__libc_writev): Likewise. * misc/readv.c (__libc_readv): Rename to __readv. (__readv): Do not define as alias. (readv): Define as alias of __readv. * misc/writev.c (__libc_writev): Rename to __writev. (__writev): Do not define as alias. (writev): Define as alias of __writev. * sysdeps/posix/readv.c (__libc_readv): Rename to __readv. (__readv): Do not define as alias. (readv): Define unconditionally as alias of __readv. * sysdeps/posix/writev.c (__libc_writev): Rename to __writev. (__writev): Do not define as alias. (writev): Define unconditionally as alias of __writev. * sysdeps/unix/syscalls.list (readv): Do not define __libc_readv name. (writev): Do not define __libc_writev name.
12 lines
281 B
C
12 lines
281 B
C
#ifndef _SYS_UIO_H
|
|
#include <misc/sys/uio.h>
|
|
|
|
#ifndef _ISOMAC
|
|
/* Now define the internal interfaces. */
|
|
extern ssize_t __readv (int __fd, const struct iovec *__iovec,
|
|
int __count);
|
|
extern ssize_t __writev (int __fd, const struct iovec *__iovec,
|
|
int __count);
|
|
#endif
|
|
#endif
|