diff options
Diffstat (limited to 'lib/libc/stdio/fscanf.c')
-rw-r--r-- | lib/libc/stdio/fscanf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/stdio/fscanf.c b/lib/libc/stdio/fscanf.c index 3ea6b6ad79e..33b7e8a6a62 100644 --- a/lib/libc/stdio/fscanf.c +++ b/lib/libc/stdio/fscanf.c @@ -35,17 +35,17 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: fscanf.c,v 1.2 1996/08/19 08:32:45 tholo Exp $"; +static char rcsid[] = "$OpenBSD: fscanf.c,v 1.3 1997/07/25 20:30:09 mickey Exp $"; #endif /* LIBC_SCCS and not lint */ #include <stdio.h> -#if __STDC__ +#ifdef __STDC__ #include <stdarg.h> #else #include <varargs.h> #endif -#if __STDC__ +#ifdef __STDC__ fscanf(FILE *fp, char const *fmt, ...) { int ret; va_list ap; |