diff options
Diffstat (limited to 'misc/pwritev64.c')
-rw-r--r-- | misc/pwritev64.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/misc/pwritev64.c b/misc/pwritev64.c index 8201b2c5f1..c89bbd8c92 100644 --- a/misc/pwritev64.c +++ b/misc/pwritev64.c @@ -26,11 +26,7 @@ <unistd.h>) except that the data are taken from VECTOR instead of a contiguous buffer. */ ssize_t -pwritev64 (fd, vector, count, offset) - int fd; - const struct iovec *vector; - int count; - off64_t offset; +pwritev64 (int fd, const struct iovec *vector, int count, off64_t offset) { __set_errno (ENOSYS); return -1; |