diff options
| author | 1997-07-25 20:12:10 +0000 | |
|---|---|---|
| committer | 1997-07-25 20:12:10 +0000 | |
| commit | 89157726261039bba32b8a2bdcaa8a6bf1f51284 (patch) | |
| tree | a6f019e74e0875e46e2379d93e1ec4c2bed5be0d /usr.sbin/lpr/common_source/common.c | |
| parent | #if __STDC__ --> #ifdef __STDC__ (diff) | |
| download | wireguard-openbsd-89157726261039bba32b8a2bdcaa8a6bf1f51284.tar.xz wireguard-openbsd-89157726261039bba32b8a2bdcaa8a6bf1f51284.zip | |
#if __STDC__ --> #ifdef __STDC__
Diffstat (limited to 'usr.sbin/lpr/common_source/common.c')
| -rw-r--r-- | usr.sbin/lpr/common_source/common.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/lpr/common_source/common.c b/usr.sbin/lpr/common_source/common.c index 4fc3194d8cc..13df6931499 100644 --- a/usr.sbin/lpr/common_source/common.c +++ b/usr.sbin/lpr/common_source/common.c @@ -1,4 +1,4 @@ -/* $OpenBSD: common.c,v 1.6 1997/07/24 01:10:33 millert Exp $ */ +/* $OpenBSD: common.c,v 1.7 1997/07/25 20:12:11 mickey Exp $ */ /* * Copyright (c) 1983, 1993 @@ -42,7 +42,7 @@ #if 0 static char sccsid[] = "@(#)common.c 8.5 (Berkeley) 4/28/95"; #else -static char rcsid[] = "$OpenBSD: common.c,v 1.6 1997/07/24 01:10:33 millert Exp $"; +static char rcsid[] = "$OpenBSD: common.c,v 1.7 1997/07/25 20:12:11 mickey Exp $"; #endif #endif /* not lint */ @@ -359,14 +359,14 @@ delay(n) (void) select(0, (fd_set *)0, (fd_set *)0, (fd_set *)0, &tdelay); } -#if __STDC__ +#ifdef __STDC__ #include <stdarg.h> #else #include <varargs.h> #endif void -#if __STDC__ +#ifdef __STDC__ fatal(const char *msg, ...) #else fatal(msg, va_alist) @@ -375,7 +375,7 @@ fatal(msg, va_alist) #endif { va_list ap; -#if __STDC__ +#ifdef __STDC__ va_start(ap, msg); #else va_start(ap); |
