summaryrefslogtreecommitdiff
path: root/usr.bin/make/parse.c
diff options
context:
space:
mode:
authorlukem <lukem@NetBSD.org>1997-09-28 03:30:58 +0000
committerlukem <lukem@NetBSD.org>1997-09-28 03:30:58 +0000
commit2ba9e97765f146186279d13f0cfdc0d4fceda8d9 (patch)
tree42d9a2410d0219e0e891abfece5ecb64c90e2e16 /usr.bin/make/parse.c
parent049546f7dd62c985d492ea849afb169fbc8e6aaf (diff)
wrap #include <sys/cdefs.h>, __RCSID(...) stuff in #ifndef MAKE_BOOTSTRAP
Diffstat (limited to 'usr.bin/make/parse.c')
-rw-r--r--usr.bin/make/parse.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/usr.bin/make/parse.c b/usr.bin/make/parse.c
index 51f0e73ab4f..40128196286 100644
--- a/usr.bin/make/parse.c
+++ b/usr.bin/make/parse.c
@@ -1,4 +1,4 @@
-/* $NetBSD: parse.c,v 1.35 1997/07/11 20:17:37 christos Exp $ */
+/* $NetBSD: parse.c,v 1.36 1997/09/28 03:31:09 lukem Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1993
@@ -38,14 +38,18 @@
* SUCH DAMAGE.
*/
+#ifdef MAKE_BOOTSTRAP
+static char rcsid[] = "$NetBSD: parse.c,v 1.36 1997/09/28 03:31:09 lukem Exp $";
+#else
#include <sys/cdefs.h>
#ifndef lint
#if 0
static char sccsid[] = "@(#)parse.c 8.3 (Berkeley) 3/19/94";
#else
-__RCSID("$NetBSD: parse.c,v 1.35 1997/07/11 20:17:37 christos Exp $");
+__RCSID("$NetBSD: parse.c,v 1.36 1997/09/28 03:31:09 lukem Exp $");
#endif
#endif /* not lint */
+#endif
/*-
* parse.c --