diff options
author | 1997-07-25 20:29:57 +0000 | |
---|---|---|
committer | 1997-07-25 20:29:57 +0000 | |
commit | b71133560cf1ffb85aedfde08af920b5a3146273 (patch) | |
tree | 9bc09abca4a79e54e78902deb91633a9273e6fe9 /lib/libc/stdio/vfprintf.c | |
parent | #if __STDC__ --> #ifdef __STDC__ (diff) | |
download | wireguard-openbsd-b71133560cf1ffb85aedfde08af920b5a3146273.tar.xz wireguard-openbsd-b71133560cf1ffb85aedfde08af920b5a3146273.zip |
#if __STDC__ --> #ifdef __STDC__
Diffstat (limited to 'lib/libc/stdio/vfprintf.c')
-rw-r--r-- | lib/libc/stdio/vfprintf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdio/vfprintf.c b/lib/libc/stdio/vfprintf.c index ecd7bb3910f..274f7b9d82f 100644 --- a/lib/libc/stdio/vfprintf.c +++ b/lib/libc/stdio/vfprintf.c @@ -35,7 +35,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: vfprintf.c,v 1.6 1996/12/14 06:49:43 tholo Exp $"; +static char *rcsid = "$OpenBSD: vfprintf.c,v 1.7 1997/07/25 20:30:12 mickey Exp $"; #endif /* LIBC_SCCS and not lint */ /* @@ -51,7 +51,7 @@ static char *rcsid = "$OpenBSD: vfprintf.c,v 1.6 1996/12/14 06:49:43 tholo Exp $ #include <string.h> #include <errno.h> -#if __STDC__ +#ifdef __STDC__ #include <stdarg.h> #else #include <varargs.h> |