diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-07-25 19:41:21 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-07-25 19:41:21 +0000 |
commit | 1c0190bf65ffb0a018ad7621c5494bd94d0f1f95 (patch) | |
tree | c905e15dd9dd46e02df594f821082846e0fb114d /libexec/fingerd | |
parent | a57a2f8a05e5ecb420666be177391e7b1592337d (diff) |
#if __STDC__ --> #ifdef __STDC__
Diffstat (limited to 'libexec/fingerd')
-rw-r--r-- | libexec/fingerd/fingerd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libexec/fingerd/fingerd.c b/libexec/fingerd/fingerd.c index 64c2d0efbca..f91791671dc 100644 --- a/libexec/fingerd/fingerd.c +++ b/libexec/fingerd/fingerd.c @@ -39,7 +39,7 @@ static char copyright[] = #ifndef lint /*static char sccsid[] = "from: @(#)fingerd.c 8.1 (Berkeley) 6/4/93";*/ -static char rcsid[] = "$Id: fingerd.c,v 1.7 1997/07/23 20:36:22 kstailey Exp $"; +static char rcsid[] = "$Id: fingerd.c,v 1.8 1997/07/25 19:41:14 mickey Exp $"; #endif /* not lint */ #include <sys/types.h> @@ -193,14 +193,14 @@ main(argc, argv) exit(0); } -#if __STDC__ +#ifdef __STDC__ #include <stdarg.h> #else #include <varargs.h> #endif void -#if __STDC__ +#ifdef __STDC__ err(const char *fmt, ...) #else err(fmt, va_alist) @@ -209,7 +209,7 @@ err(fmt, va_alist) #endif { va_list ap; -#if __STDC__ +#ifdef __STDC__ va_start(ap, fmt); #else va_start(ap); |