diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-07-25 19:13:23 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-07-25 19:13:23 +0000 |
commit | c970811a26a4d751242a29ec6b9cce6601765c36 (patch) | |
tree | fa9dc8ca89ae62752f49098a6fe93699ab7328e5 /sbin/reboot | |
parent | 8b5947547c06bfdb31b8ad5a3e99c52ee0ca7f56 (diff) |
#if __STDC__ --> #ifdef __STDC__
Diffstat (limited to 'sbin/reboot')
-rw-r--r-- | sbin/reboot/reboot.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sbin/reboot/reboot.c b/sbin/reboot/reboot.c index cbbee229e3a..bde7fe57bfc 100644 --- a/sbin/reboot/reboot.c +++ b/sbin/reboot/reboot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: reboot.c,v 1.8 1997/06/22 22:19:11 downsj Exp $ */ +/* $OpenBSD: reboot.c,v 1.9 1997/07/25 19:13:10 mickey Exp $ */ /* $NetBSD: reboot.c,v 1.8 1995/10/05 05:36:22 mycroft Exp $ */ /* @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)reboot.c 8.1 (Berkeley) 6/5/93"; #else -static char rcsid[] = "$OpenBSD: reboot.c,v 1.8 1997/06/22 22:19:11 downsj Exp $"; +static char rcsid[] = "$OpenBSD: reboot.c,v 1.9 1997/07/25 19:13:10 mickey Exp $"; #endif #endif /* not lint */ @@ -231,14 +231,14 @@ usage() exit(1); } -#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) @@ -247,7 +247,7 @@ err(fmt, va_alist) #endif { va_list ap; -#if __STDC__ +#ifdef __STDC__ va_start(ap, fmt); #else va_start(ap); |