diff options
Diffstat (limited to 'lib/libc/stdio/feof.c')
-rw-r--r-- | lib/libc/stdio/feof.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libc/stdio/feof.c b/lib/libc/stdio/feof.c index 756edfa0635..34d36d53caa 100644 --- a/lib/libc/stdio/feof.c +++ b/lib/libc/stdio/feof.c @@ -31,7 +31,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: feof.c,v 1.3 2003/06/02 20:18:36 millert Exp $"; +static char rcsid[] = "$OpenBSD: feof.c,v 1.4 2004/09/28 18:12:44 otto Exp $"; #endif /* LIBC_SCCS and not lint */ #include <stdio.h> @@ -42,8 +42,7 @@ static char rcsid[] = "$OpenBSD: feof.c,v 1.3 2003/06/02 20:18:36 millert Exp $" #undef feof int -feof(fp) - FILE *fp; +feof(FILE *fp) { return (__sfeof(fp)); } |