diff options
Diffstat (limited to 'lib/libc/stdio/getw.c')
-rw-r--r-- | lib/libc/stdio/getw.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libc/stdio/getw.c b/lib/libc/stdio/getw.c index e6a6d971950..2872c3c4df4 100644 --- a/lib/libc/stdio/getw.c +++ b/lib/libc/stdio/getw.c @@ -31,14 +31,13 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: getw.c,v 1.3 2003/06/02 20:18:37 millert Exp $"; +static char rcsid[] = "$OpenBSD: getw.c,v 1.4 2004/09/28 18:12:44 otto Exp $"; #endif /* LIBC_SCCS and not lint */ #include <stdio.h> int -getw(fp) - FILE *fp; +getw(FILE *fp) { int x; |