diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-07-25 18:58:46 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-07-25 18:58:46 +0000 |
commit | 8b5947547c06bfdb31b8ad5a3e99c52ee0ca7f56 (patch) | |
tree | 148552e3918c0aceeff4f3480be52874f868234f /bin/csh/lex.c | |
parent | 5f847c26943f34aecbbab0e20155ce54256b5ba1 (diff) |
#if __STDC__ --> #ifdef __STDC__
Diffstat (limited to 'bin/csh/lex.c')
-rw-r--r-- | bin/csh/lex.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/csh/lex.c b/bin/csh/lex.c index 9273d67c95f..ae8bb8ddc7f 100644 --- a/bin/csh/lex.c +++ b/bin/csh/lex.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lex.c,v 1.2 1996/06/23 14:19:25 deraadt Exp $ */ +/* $OpenBSD: lex.c,v 1.3 1997/07/25 18:58:12 mickey Exp $ */ /* $NetBSD: lex.c,v 1.9 1995/09/27 00:38:46 jtc Exp $ */ /*- @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)lex.c 8.1 (Berkeley) 5/31/93"; #else -static char rcsid[] = "$OpenBSD: lex.c,v 1.2 1996/06/23 14:19:25 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: lex.c,v 1.3 1997/07/25 18:58:12 mickey Exp $"; #endif #endif /* not lint */ @@ -49,7 +49,7 @@ static char rcsid[] = "$OpenBSD: lex.c,v 1.2 1996/06/23 14:19:25 deraadt Exp $"; #include <stdlib.h> #include <string.h> #include <unistd.h> -#if __STDC__ +#ifdef __STDC__ # include <stdarg.h> #else # include <varargs.h> |