diff options
author | Roland McGrath <roland@gnu.org> | 2002-12-15 23:22:47 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-12-15 23:22:47 +0000 |
commit | 67d27eba63f00cb00fb448ec1d2cc43dd4181196 (patch) | |
tree | 7fbcbaa66793ae17d52a26f81185b41e15263de1 | |
parent | f3015aa5ff2af899b7bb69576074cd4123911b61 (diff) | |
download | glibc-67d27eba63f00cb00fb448ec1d2cc43dd4181196.tar.gz glibc-67d27eba63f00cb00fb448ec1d2cc43dd4181196.tar.xz glibc-67d27eba63f00cb00fb448ec1d2cc43dd4181196.zip |
2002-12-15 Roland McGrath <roland@redhat.com>
* sysdeps/unix/sysv/linux/readv.c (do_readv): Use prototype defn.
-rw-r--r-- | sysdeps/unix/sysv/linux/readv.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sysdeps/unix/sysv/linux/readv.c b/sysdeps/unix/sysv/linux/readv.c index e6f9fb0c4e..ddf070c358 100644 --- a/sysdeps/unix/sysv/linux/readv.c +++ b/sysdeps/unix/sysv/linux/readv.c @@ -40,10 +40,7 @@ static ssize_t __atomic_readv_replacement (int, __const struct iovec *, /* We should deal with kernel which have a smaller UIO_FASTIOV as well as a very big count. */ static ssize_t -do_readv (fd, vector, count) - int fd; - const struct iovec *vector; - int count; +do_readv (int fd, const struct iovec *vector, int count) { ssize_t bytes_read; |