summaryrefslogtreecommitdiff
path: root/bin/csh/file.c
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1997-07-25 18:58:46 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1997-07-25 18:58:46 +0000
commit8b5947547c06bfdb31b8ad5a3e99c52ee0ca7f56 (patch)
tree148552e3918c0aceeff4f3480be52874f868234f /bin/csh/file.c
parent5f847c26943f34aecbbab0e20155ce54256b5ba1 (diff)
#if __STDC__ --> #ifdef __STDC__
Diffstat (limited to 'bin/csh/file.c')
-rw-r--r--bin/csh/file.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/csh/file.c b/bin/csh/file.c
index d91c3173025..3864281000b 100644
--- a/bin/csh/file.c
+++ b/bin/csh/file.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: file.c,v 1.3 1996/12/04 17:46:07 millert Exp $ */
+/* $OpenBSD: file.c,v 1.4 1997/07/25 18:58:06 mickey Exp $ */
/* $NetBSD: file.c,v 1.11 1996/11/08 19:34:37 christos Exp $ */
/*-
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)file.c 8.2 (Berkeley) 3/19/94";
#else
-static char rcsid[] = "$OpenBSD: file.c,v 1.3 1996/12/04 17:46:07 millert Exp $";
+static char rcsid[] = "$OpenBSD: file.c,v 1.4 1997/07/25 18:58:06 mickey Exp $";
#endif
#endif /* not lint */
@@ -55,7 +55,7 @@ static char rcsid[] = "$OpenBSD: file.c,v 1.3 1996/12/04 17:46:07 millert Exp $"
#ifndef SHORT_STRINGS
#include <string.h>
#endif /* SHORT_STRINGS */
-#if __STDC__
+#ifdef __STDC__
# include <stdarg.h>
#else
# include <varargs.h>