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/set.c | |
parent | 5f847c26943f34aecbbab0e20155ce54256b5ba1 (diff) |
#if __STDC__ --> #ifdef __STDC__
Diffstat (limited to 'bin/csh/set.c')
-rw-r--r-- | bin/csh/set.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/csh/set.c b/bin/csh/set.c index 536195188ae..47649f55833 100644 --- a/bin/csh/set.c +++ b/bin/csh/set.c @@ -1,4 +1,4 @@ -/* $OpenBSD: set.c,v 1.2 1996/06/23 14:19:30 deraadt Exp $ */ +/* $OpenBSD: set.c,v 1.3 1997/07/25 18:58:17 mickey Exp $ */ /* $NetBSD: set.c,v 1.8 1995/03/21 18:35:52 mycroft Exp $ */ /*- @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)set.c 8.1 (Berkeley) 5/31/93"; #else -static char rcsid[] = "$OpenBSD: set.c,v 1.2 1996/06/23 14:19:30 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: set.c,v 1.3 1997/07/25 18:58:17 mickey Exp $"; #endif #endif /* not lint */ @@ -47,7 +47,7 @@ static char rcsid[] = "$OpenBSD: set.c,v 1.2 1996/06/23 14:19:30 deraadt Exp $"; #ifndef SHORT_STRINGS #include <string.h> #endif /* SHORT_STRINGS */ -#if __STDC__ +#ifdef __STDC__ # include <stdarg.h> #else # include <varargs.h> |