diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-07-25 20:12:33 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-07-25 20:12:33 +0000 |
commit | 1626c644fa840e7d0e3178a0c02abb959cbb2d39 (patch) | |
tree | 6ccdff5f99d9f696c32990e7e7300e577ecb2010 /usr.sbin/lpr/common_source | |
parent | bdd29b5fbbe2dc1fb578b767909cfc64b6db403b (diff) |
#if __STDC__ --> #ifdef __STDC__
Diffstat (limited to 'usr.sbin/lpr/common_source')
-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); |