mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-25 12:11:10 +00:00
a784e50247
No more __const.
14 lines
444 B
C
14 lines
444 B
C
#ifndef _SYS_UIO_H
|
|
#include <misc/sys/uio.h>
|
|
|
|
/* Now define the internal interfaces. */
|
|
extern ssize_t __readv (int __fd, const struct iovec *__vector,
|
|
int __count);
|
|
extern ssize_t __libc_readv (int __fd, const struct iovec *__vector,
|
|
int __count);
|
|
extern ssize_t __writev (int __fd, const struct iovec *__vector,
|
|
int __count);
|
|
extern ssize_t __libc_writev (int __fd, const struct iovec *__vector,
|
|
int __count);
|
|
#endif
|