diff options
Diffstat (limited to 'lib/libc/stdio/putw.c')
-rw-r--r-- | lib/libc/stdio/putw.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/libc/stdio/putw.c b/lib/libc/stdio/putw.c index 97f6e17c604..8bea9b55abd 100644 --- a/lib/libc/stdio/putw.c +++ b/lib/libc/stdio/putw.c @@ -31,16 +31,14 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: putw.c,v 1.4 2003/06/02 20:18:37 millert Exp $"; +static char rcsid[] = "$OpenBSD: putw.c,v 1.5 2004/09/28 18:12:44 otto Exp $"; #endif /* LIBC_SCCS and not lint */ #include <stdio.h> #include "fvwrite.h" int -putw(w, fp) - int w; - FILE *fp; +putw(int w, FILE *fp) { struct __suio uio; struct __siov iov; |