diff options
author | 1997-07-25 18:57:57 +0000 | |
---|---|---|
committer | 1997-07-25 18:57:57 +0000 | |
commit | b0c62ffac5bc051d37128cca6f228e66cb829887 (patch) | |
tree | 124f205f1a8f12dc7820f9c442ad42d93151fed7 /bin/csh/csh.c | |
parent | restore traditional "all" keyword option - see lpc(8) (diff) | |
download | wireguard-openbsd-b0c62ffac5bc051d37128cca6f228e66cb829887.tar.xz wireguard-openbsd-b0c62ffac5bc051d37128cca6f228e66cb829887.zip |
#if __STDC__ --> #ifdef __STDC__
Diffstat (limited to 'bin/csh/csh.c')
-rw-r--r-- | bin/csh/csh.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/csh/csh.c b/bin/csh/csh.c index 0a974b1e633..b971a1bef77 100644 --- a/bin/csh/csh.c +++ b/bin/csh/csh.c @@ -1,4 +1,4 @@ -/* $OpenBSD: csh.c,v 1.6 1997/07/23 14:36:48 kstailey Exp $ */ +/* $OpenBSD: csh.c,v 1.7 1997/07/25 18:57:59 mickey Exp $ */ /* $NetBSD: csh.c,v 1.14 1995/04/29 23:21:28 mycroft Exp $ */ /*- @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)csh.c 8.2 (Berkeley) 10/12/93"; #else -static char rcsid[] = "$OpenBSD: csh.c,v 1.6 1997/07/23 14:36:48 kstailey Exp $"; +static char rcsid[] = "$OpenBSD: csh.c,v 1.7 1997/07/25 18:57:59 mickey Exp $"; #endif #endif /* not lint */ @@ -60,7 +60,7 @@ static char rcsid[] = "$OpenBSD: csh.c,v 1.6 1997/07/23 14:36:48 kstailey Exp $" #include <locale.h> #include <unistd.h> #include <vis.h> -#if __STDC__ +#ifdef __STDC__ # include <stdarg.h> #else # include <varargs.h> |