summaryrefslogtreecommitdiff
path: root/lib/libc/sys/pwritev.c
diff options
context:
space:
mode:
authormatt <matt@NetBSD.org>2012-03-20 16:26:12 +0000
committermatt <matt@NetBSD.org>2012-03-20 16:26:12 +0000
commitc9c2c28799b5d51188e2ed6b6c44bfd086b3003f (patch)
tree3205bb193f98d7ba3bf168a446a5a1cb3b05b160 /lib/libc/sys/pwritev.c
parent043d89a797e69499d49a805a95869b718f9b5ed6 (diff)
Convert to C89 prototypes. Remove use of __P
Diffstat (limited to 'lib/libc/sys/pwritev.c')
-rw-r--r--lib/libc/sys/pwritev.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/lib/libc/sys/pwritev.c b/lib/libc/sys/pwritev.c
index bb7918b31ca..fd627be0a04 100644
--- a/lib/libc/sys/pwritev.c
+++ b/lib/libc/sys/pwritev.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pwritev.c,v 1.6 2007/11/23 12:39:16 uebayasi Exp $ */
+/* $NetBSD: pwritev.c,v 1.7 2012/03/20 16:26:12 matt Exp $ */
/*
* Copyright (c) 1992, 1993
@@ -31,7 +31,7 @@
#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: pwritev.c,v 1.6 2007/11/23 12:39:16 uebayasi Exp $");
+__RCSID("$NetBSD: pwritev.c,v 1.7 2012/03/20 16:26:12 matt Exp $");
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>
@@ -46,11 +46,7 @@ ssize_t __pwritev(int, const struct iovec *, int, int, off_t);
* is not supplied by GCC 1.X but is supplied by GCC 2.X.
*/
ssize_t
-pwritev(fd, iovp, iovcnt, offset)
- int fd;
- const struct iovec *iovp;
- int iovcnt;
- off_t offset;
+pwritev(int fd, const struct iovec *iovp, int iovcnt, off_t offset)
{
return __pwritev(fd, iovp, iovcnt, 0, offset);