1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-24 17:51:17 +03:00

Resolve __vector namespace conflict with Altivec.

This commit is contained in:
Petr Baudis
2012-04-17 08:33:41 -05:00
committed by Ryan S. Arnold
parent 750b5926bc
commit 0396e69dbe
2 changed files with 9 additions and 4 deletions

View File

@@ -3,13 +3,13 @@
#ifndef _ISOMAC
/* Now define the internal interfaces. */
extern ssize_t __readv (int __fd, const struct iovec *__vector,
extern ssize_t __readv (int __fd, const struct iovec *__iovec,
int __count);
extern ssize_t __libc_readv (int __fd, const struct iovec *__vector,
extern ssize_t __libc_readv (int __fd, const struct iovec *__iovec,
int __count);
extern ssize_t __writev (int __fd, const struct iovec *__vector,
extern ssize_t __writev (int __fd, const struct iovec *__iovec,
int __count);
extern ssize_t __libc_writev (int __fd, const struct iovec *__vector,
extern ssize_t __libc_writev (int __fd, const struct iovec *__iovec,
int __count);
#endif
#endif