summaryrefslogtreecommitdiff
path: root/usr.bin/make
diff options
context:
space:
mode:
authorcgd <cgd@NetBSD.org>1994-03-05 00:35:26 +0000
committercgd <cgd@NetBSD.org>1994-03-05 00:35:26 +0000
commit298fa8e587f33f2db0bfa6a37cb6e8efae100e13 (patch)
treefd960f8827f7a628bfad5dbe09ac12b96824fe7a /usr.bin/make
parentea40a9138de7505f4a674ac68c03c56d384a151c (diff)
fixes/improvements from Christos Zoulas <christos@deshaw.com>.
Diffstat (limited to 'usr.bin/make')
-rw-r--r--usr.bin/make/lst.lib/Makefile11
-rw-r--r--usr.bin/make/lst.lib/lstAppend.c4
-rw-r--r--usr.bin/make/lst.lib/lstAtEnd.c4
-rw-r--r--usr.bin/make/lst.lib/lstAtFront.c4
-rw-r--r--usr.bin/make/lst.lib/lstClose.c4
-rw-r--r--usr.bin/make/lst.lib/lstConcat.c4
-rw-r--r--usr.bin/make/lst.lib/lstDatum.c4
-rw-r--r--usr.bin/make/lst.lib/lstDeQueue.c4
-rw-r--r--usr.bin/make/lst.lib/lstDestroy.c4
-rw-r--r--usr.bin/make/lst.lib/lstDupl.c4
-rw-r--r--usr.bin/make/lst.lib/lstEnQueue.c4
-rw-r--r--usr.bin/make/lst.lib/lstFind.c4
-rw-r--r--usr.bin/make/lst.lib/lstFindFrom.c4
-rw-r--r--usr.bin/make/lst.lib/lstFirst.c4
-rw-r--r--usr.bin/make/lst.lib/lstForEach.c4
-rw-r--r--usr.bin/make/lst.lib/lstForEachFrom.c8
-rw-r--r--usr.bin/make/lst.lib/lstInit.c4
-rw-r--r--usr.bin/make/lst.lib/lstInsert.c4
-rw-r--r--usr.bin/make/lst.lib/lstInt.h2
-rw-r--r--usr.bin/make/lst.lib/lstIsAtEnd.c4
-rw-r--r--usr.bin/make/lst.lib/lstIsEmpty.c4
-rw-r--r--usr.bin/make/lst.lib/lstLast.c4
-rw-r--r--usr.bin/make/lst.lib/lstMember.c4
-rw-r--r--usr.bin/make/lst.lib/lstNext.c4
-rw-r--r--usr.bin/make/lst.lib/lstOpen.c4
-rw-r--r--usr.bin/make/lst.lib/lstRemove.c4
-rw-r--r--usr.bin/make/lst.lib/lstReplace.c4
-rw-r--r--usr.bin/make/lst.lib/lstSucc.c4
28 files changed, 66 insertions, 55 deletions
diff --git a/usr.bin/make/lst.lib/Makefile b/usr.bin/make/lst.lib/Makefile
new file mode 100644
index 00000000000..84ab758803e
--- /dev/null
+++ b/usr.bin/make/lst.lib/Makefile
@@ -0,0 +1,11 @@
+# $Id: Makefile,v 1.1 1994/03/05 00:35:26 cgd Exp $
+
+OBJ=lstAppend.o lstDupl.o lstInit.o lstOpen.o lstAtEnd.o lstEnQueue.o \
+ lstInsert.o lstAtFront.o lstIsAtEnd.o lstClose.o lstFind.o lstIsEmpty.o \
+ lstRemove.o lstConcat.o lstFindFrom.o lstLast.o lstReplace.o lstFirst.o \
+ lstDatum.o lstForEach.o lstMember.o lstSucc.o lstDeQueue.o \
+ lstForEachFrom.o lstDestroy.o lstNext.o
+
+CC=gcc -Wall
+CFLAGS=-I.. -O
+all: ${OBJ}
diff --git a/usr.bin/make/lst.lib/lstAppend.c b/usr.bin/make/lst.lib/lstAppend.c
index f20ad6d1823..b51abe7ae39 100644
--- a/usr.bin/make/lst.lib/lstAppend.c
+++ b/usr.bin/make/lst.lib/lstAppend.c
@@ -35,8 +35,8 @@
*/
#ifndef lint
-/*static char sccsid[] = "from: @(#)lstAppend.c 5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: lstAppend.c,v 1.2 1993/08/01 18:12:40 mycroft Exp $";
+/* from: static char sccsid[] = "@(#)lstAppend.c 5.3 (Berkeley) 6/1/90"; */
+static char *rcsid = "$Id: lstAppend.c,v 1.3 1994/03/05 00:35:29 cgd Exp $";
#endif /* not lint */
/*-
diff --git a/usr.bin/make/lst.lib/lstAtEnd.c b/usr.bin/make/lst.lib/lstAtEnd.c
index dadfab460ce..5b27d452e77 100644
--- a/usr.bin/make/lst.lib/lstAtEnd.c
+++ b/usr.bin/make/lst.lib/lstAtEnd.c
@@ -35,8 +35,8 @@
*/
#ifndef lint
-/*static char sccsid[] = "from: @(#)lstAtEnd.c 5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: lstAtEnd.c,v 1.2 1993/08/01 18:12:39 mycroft Exp $";
+/* from: static char sccsid[] = "@(#)lstAtEnd.c 5.3 (Berkeley) 6/1/90"; */
+static char *rcsid = "$Id: lstAtEnd.c,v 1.3 1994/03/05 00:35:31 cgd Exp $";
#endif /* not lint */
/*-
diff --git a/usr.bin/make/lst.lib/lstAtFront.c b/usr.bin/make/lst.lib/lstAtFront.c
index 3b105d896e6..c9ecac94d13 100644
--- a/usr.bin/make/lst.lib/lstAtFront.c
+++ b/usr.bin/make/lst.lib/lstAtFront.c
@@ -35,8 +35,8 @@
*/
#ifndef lint
-/*static char sccsid[] = "from: @(#)lstAtFront.c 5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: lstAtFront.c,v 1.2 1993/08/01 18:12:38 mycroft Exp $";
+/* from: static char sccsid[] = "@(#)lstAtFront.c 5.3 (Berkeley) 6/1/90"; */
+static char *rcsid = "$Id: lstAtFront.c,v 1.3 1994/03/05 00:35:32 cgd Exp $";
#endif /* not lint */
/*-
diff --git a/usr.bin/make/lst.lib/lstClose.c b/usr.bin/make/lst.lib/lstClose.c
index 8ea6fb518da..0c55638f208 100644
--- a/usr.bin/make/lst.lib/lstClose.c
+++ b/usr.bin/make/lst.lib/lstClose.c
@@ -35,8 +35,8 @@
*/
#ifndef lint
-/*static char sccsid[] = "from: @(#)lstClose.c 5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: lstClose.c,v 1.2 1993/08/01 18:12:37 mycroft Exp $";
+/* from: static char sccsid[] = "@(#)lstClose.c 5.3 (Berkeley) 6/1/90"; */
+static char *rcsid = "$Id: lstClose.c,v 1.3 1994/03/05 00:35:34 cgd Exp $";
#endif /* not lint */
/*-
diff --git a/usr.bin/make/lst.lib/lstConcat.c b/usr.bin/make/lst.lib/lstConcat.c
index 2f1399db9dd..c2f9847c6fd 100644
--- a/usr.bin/make/lst.lib/lstConcat.c
+++ b/usr.bin/make/lst.lib/lstConcat.c
@@ -35,8 +35,8 @@
*/
#ifndef lint
-/*static char sccsid[] = "from: @(#)lstConcat.c 5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: lstConcat.c,v 1.2 1993/08/01 18:12:36 mycroft Exp $";
+/* from: static char sccsid[] = "@(#)lstConcat.c 5.3 (Berkeley) 6/1/90"; */
+static char *rcsid = "$Id: lstConcat.c,v 1.3 1994/03/05 00:35:35 cgd Exp $";
#endif /* not lint */
/*-
diff --git a/usr.bin/make/lst.lib/lstDatum.c b/usr.bin/make/lst.lib/lstDatum.c
index 3a81792d8db..70ad7c5b581 100644
--- a/usr.bin/make/lst.lib/lstDatum.c
+++ b/usr.bin/make/lst.lib/lstDatum.c
@@ -35,8 +35,8 @@
*/
#ifndef lint
-/*static char sccsid[] = "from: @(#)lstDatum.c 5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: lstDatum.c,v 1.2 1993/08/01 18:12:35 mycroft Exp $";
+/* from: static char sccsid[] = "@(#)lstDatum.c 5.3 (Berkeley) 6/1/90"; */
+static char *rcsid = "$Id: lstDatum.c,v 1.3 1994/03/05 00:35:36 cgd Exp $";
#endif /* not lint */
/*-
diff --git a/usr.bin/make/lst.lib/lstDeQueue.c b/usr.bin/make/lst.lib/lstDeQueue.c
index de54538843c..e09ac83d2de 100644
--- a/usr.bin/make/lst.lib/lstDeQueue.c
+++ b/usr.bin/make/lst.lib/lstDeQueue.c
@@ -35,8 +35,8 @@
*/
#ifndef lint
-/*static char sccsid[] = "from: @(#)lstDeQueue.c 5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: lstDeQueue.c,v 1.2 1993/08/01 18:12:34 mycroft Exp $";
+/* from: static char sccsid[] = "@(#)lstDeQueue.c 5.3 (Berkeley) 6/1/90"; */
+static char *rcsid = "$Id: lstDeQueue.c,v 1.3 1994/03/05 00:35:37 cgd Exp $";
#endif /* not lint */
/*-
diff --git a/usr.bin/make/lst.lib/lstDestroy.c b/usr.bin/make/lst.lib/lstDestroy.c
index 4cdb4ac78d1..ba081774f28 100644
--- a/usr.bin/make/lst.lib/lstDestroy.c
+++ b/usr.bin/make/lst.lib/lstDestroy.c
@@ -35,8 +35,8 @@
*/
#ifndef lint
-/*static char sccsid[] = "from: @(#)lstDestroy.c 5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: lstDestroy.c,v 1.2 1993/08/01 18:12:33 mycroft Exp $";
+/* from: static char sccsid[] = "@(#)lstDestroy.c 5.3 (Berkeley) 6/1/90"; */
+static char *rcsid = "$Id: lstDestroy.c,v 1.3 1994/03/05 00:35:38 cgd Exp $";
#endif /* not lint */
/*-
diff --git a/usr.bin/make/lst.lib/lstDupl.c b/usr.bin/make/lst.lib/lstDupl.c
index e99d14aac3e..bcd628272c9 100644
--- a/usr.bin/make/lst.lib/lstDupl.c
+++ b/usr.bin/make/lst.lib/lstDupl.c
@@ -35,8 +35,8 @@
*/
#ifndef lint
-/*static char sccsid[] = "from: @(#)lstDupl.c 5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: lstDupl.c,v 1.2 1993/08/01 18:12:32 mycroft Exp $";
+/* from: static char sccsid[] = "@(#)lstDupl.c 5.3 (Berkeley) 6/1/90"; */
+static char *rcsid = "$Id: lstDupl.c,v 1.3 1994/03/05 00:35:39 cgd Exp $";
#endif /* not lint */
/*-
diff --git a/usr.bin/make/lst.lib/lstEnQueue.c b/usr.bin/make/lst.lib/lstEnQueue.c
index 0461c71570a..565ab26044d 100644
--- a/usr.bin/make/lst.lib/lstEnQueue.c
+++ b/usr.bin/make/lst.lib/lstEnQueue.c
@@ -35,8 +35,8 @@
*/
#ifndef lint
-/*static char sccsid[] = "from: @(#)lstEnQueue.c 5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: lstEnQueue.c,v 1.2 1993/08/01 18:12:31 mycroft Exp $";
+/* from: static char sccsid[] = "@(#)lstEnQueue.c 5.3 (Berkeley) 6/1/90"; */
+static char *rcsid = "$Id: lstEnQueue.c,v 1.3 1994/03/05 00:35:40 cgd Exp $";
#endif /* not lint */
/*-
diff --git a/usr.bin/make/lst.lib/lstFind.c b/usr.bin/make/lst.lib/lstFind.c
index 94c6e666f96..5f9f7312190 100644
--- a/usr.bin/make/lst.lib/lstFind.c
+++ b/usr.bin/make/lst.lib/lstFind.c
@@ -35,8 +35,8 @@
*/
#ifndef lint
-/*static char sccsid[] = "from: @(#)lstFind.c 5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: lstFind.c,v 1.2 1993/08/01 18:12:30 mycroft Exp $";
+/* from: static char sccsid[] = "@(#)lstFind.c 5.3 (Berkeley) 6/1/90"; */
+static char *rcsid = "$Id: lstFind.c,v 1.3 1994/03/05 00:35:41 cgd Exp $";
#endif /* not lint */
/*-
diff --git a/usr.bin/make/lst.lib/lstFindFrom.c b/usr.bin/make/lst.lib/lstFindFrom.c
index fb5b331af3d..ca5c61b62d1 100644
--- a/usr.bin/make/lst.lib/lstFindFrom.c
+++ b/usr.bin/make/lst.lib/lstFindFrom.c
@@ -35,8 +35,8 @@
*/
#ifndef lint
-/*static char sccsid[] = "from: @(#)lstFindFrom.c 5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: lstFindFrom.c,v 1.2 1993/08/01 18:12:29 mycroft Exp $";
+/* from: static char sccsid[] = "@(#)lstFindFrom.c 5.3 (Berkeley) 6/1/90"; */
+static char *rcsid = "$Id: lstFindFrom.c,v 1.3 1994/03/05 00:35:42 cgd Exp $";
#endif /* not lint */
/*-
diff --git a/usr.bin/make/lst.lib/lstFirst.c b/usr.bin/make/lst.lib/lstFirst.c
index 4e5b1f44d56..e8ef10302fb 100644
--- a/usr.bin/make/lst.lib/lstFirst.c
+++ b/usr.bin/make/lst.lib/lstFirst.c
@@ -35,8 +35,8 @@
*/
#ifndef lint
-/*static char sccsid[] = "from: @(#)lstFirst.c 5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: lstFirst.c,v 1.2 1993/08/01 18:12:29 mycroft Exp $";
+/* from: static char sccsid[] = "@(#)lstFirst.c 5.3 (Berkeley) 6/1/90"; */
+static char *rcsid = "$Id: lstFirst.c,v 1.3 1994/03/05 00:35:43 cgd Exp $";
#endif /* not lint */
/*-
diff --git a/usr.bin/make/lst.lib/lstForEach.c b/usr.bin/make/lst.lib/lstForEach.c
index 69ebf95b8fe..57d3348f278 100644
--- a/usr.bin/make/lst.lib/lstForEach.c
+++ b/usr.bin/make/lst.lib/lstForEach.c
@@ -35,8 +35,8 @@
*/
#ifndef lint
-/*static char sccsid[] = "from: @(#)lstForEach.c 5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: lstForEach.c,v 1.2 1993/08/01 18:12:28 mycroft Exp $";
+/* from: static char sccsid[] = "@(#)lstForEach.c 5.3 (Berkeley) 6/1/90"; */
+static char *rcsid = "$Id: lstForEach.c,v 1.3 1994/03/05 00:35:44 cgd Exp $";
#endif /* not lint */
/*-
diff --git a/usr.bin/make/lst.lib/lstForEachFrom.c b/usr.bin/make/lst.lib/lstForEachFrom.c
index dc52a1e439a..a8bb8b962db 100644
--- a/usr.bin/make/lst.lib/lstForEachFrom.c
+++ b/usr.bin/make/lst.lib/lstForEachFrom.c
@@ -35,8 +35,8 @@
*/
#ifndef lint
-/*static char sccsid[] = "from: @(#)lstForEachFrom.c 5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: lstForEachFrom.c,v 1.2 1993/08/01 18:12:27 mycroft Exp $";
+/* from: static char sccsid[] = "@(#)lstForEachFrom.c 5.3 (Berkeley) 6/1/90"; */
+static char *rcsid = "$Id: lstForEachFrom.c,v 1.3 1994/03/05 00:35:45 cgd Exp $";
#endif /* not lint */
/*-
@@ -88,9 +88,9 @@ Lst_ForEachFrom (l, ln, proc, d)
next = tln->nextPtr;
- tln->useCount++;
+ (void) tln->useCount++;
result = (*proc) (tln->datum, d);
- tln->useCount--;
+ (void) tln->useCount--;
/*
* We're done with the traversal if
diff --git a/usr.bin/make/lst.lib/lstInit.c b/usr.bin/make/lst.lib/lstInit.c
index dcb2c86b5df..8761c8635d8 100644
--- a/usr.bin/make/lst.lib/lstInit.c
+++ b/usr.bin/make/lst.lib/lstInit.c
@@ -35,8 +35,8 @@
*/
#ifndef lint
-/*static char sccsid[] = "from: @(#)lstInit.c 5.4 (Berkeley) 12/28/90";*/
-static char rcsid[] = "$Id: lstInit.c,v 1.2 1993/08/01 18:12:26 mycroft Exp $";
+/* from: static char sccsid[] = "@(#)lstInit.c 5.4 (Berkeley) 12/28/90"; */
+static char *rcsid = "$Id: lstInit.c,v 1.3 1994/03/05 00:35:46 cgd Exp $";
#endif /* not lint */
/*-
diff --git a/usr.bin/make/lst.lib/lstInsert.c b/usr.bin/make/lst.lib/lstInsert.c
index 341d35f2508..03f14c9a082 100644
--- a/usr.bin/make/lst.lib/lstInsert.c
+++ b/usr.bin/make/lst.lib/lstInsert.c
@@ -35,8 +35,8 @@
*/
#ifndef lint
-/*static char sccsid[] = "from: @(#)lstInsert.c 5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: lstInsert.c,v 1.2 1993/08/01 18:12:25 mycroft Exp $";
+/* from: static char sccsid[] = "@(#)lstInsert.c 5.3 (Berkeley) 6/1/90"; */
+static char *rcsid = "$Id: lstInsert.c,v 1.3 1994/03/05 00:35:47 cgd Exp $";
#endif /* not lint */
/*-
diff --git a/usr.bin/make/lst.lib/lstInt.h b/usr.bin/make/lst.lib/lstInt.h
index ef5d10b84aa..508b7e1a544 100644
--- a/usr.bin/make/lst.lib/lstInt.h
+++ b/usr.bin/make/lst.lib/lstInt.h
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)lstInt.h 5.4 (Berkeley) 12/28/90
- * $Id: lstInt.h,v 1.2 1993/08/01 18:12:41 mycroft Exp $
+ * $Id: lstInt.h,v 1.3 1994/03/05 00:35:48 cgd Exp $
*/
/*-
diff --git a/usr.bin/make/lst.lib/lstIsAtEnd.c b/usr.bin/make/lst.lib/lstIsAtEnd.c
index a8b68d80485..713e1baa37c 100644
--- a/usr.bin/make/lst.lib/lstIsAtEnd.c
+++ b/usr.bin/make/lst.lib/lstIsAtEnd.c
@@ -35,8 +35,8 @@
*/
#ifndef lint
-/*static char sccsid[] = "from: @(#)lstIsAtEnd.c 5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: lstIsAtEnd.c,v 1.2 1993/08/01 18:12:24 mycroft Exp $";
+/* from: static char sccsid[] = "@(#)lstIsAtEnd.c 5.3 (Berkeley) 6/1/90"; */
+static char *rcsid = "$Id: lstIsAtEnd.c,v 1.3 1994/03/05 00:35:48 cgd Exp $";
#endif /* not lint */
/*-
diff --git a/usr.bin/make/lst.lib/lstIsEmpty.c b/usr.bin/make/lst.lib/lstIsEmpty.c
index 2e3382c1a90..2acb005daf1 100644
--- a/usr.bin/make/lst.lib/lstIsEmpty.c
+++ b/usr.bin/make/lst.lib/lstIsEmpty.c
@@ -35,8 +35,8 @@
*/
#ifndef lint
-/*static char sccsid[] = "from: @(#)lstIsEmpty.c 5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: lstIsEmpty.c,v 1.2 1993/08/01 18:12:23 mycroft Exp $";
+/* from: static char sccsid[] = "@(#)lstIsEmpty.c 5.3 (Berkeley) 6/1/90"; */
+static char *rcsid = "$Id: lstIsEmpty.c,v 1.3 1994/03/05 00:35:49 cgd Exp $";
#endif /* not lint */
/*-
diff --git a/usr.bin/make/lst.lib/lstLast.c b/usr.bin/make/lst.lib/lstLast.c
index 8b4dcb19b6c..0f24d0758a3 100644
--- a/usr.bin/make/lst.lib/lstLast.c
+++ b/usr.bin/make/lst.lib/lstLast.c
@@ -35,8 +35,8 @@
*/
#ifndef lint
-/*static char sccsid[] = "from: @(#)lstLast.c 5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: lstLast.c,v 1.2 1993/08/01 18:12:22 mycroft Exp $";
+/* from: static char sccsid[] = "@(#)lstLast.c 5.3 (Berkeley) 6/1/90"; */
+static char *rcsid = "$Id: lstLast.c,v 1.3 1994/03/05 00:35:50 cgd Exp $";
#endif /* not lint */
/*-
diff --git a/usr.bin/make/lst.lib/lstMember.c b/usr.bin/make/lst.lib/lstMember.c
index 57db47fa6e5..fe23cb22cb5 100644
--- a/usr.bin/make/lst.lib/lstMember.c
+++ b/usr.bin/make/lst.lib/lstMember.c
@@ -35,8 +35,8 @@
*/
#ifndef lint
-/*static char sccsid[] = "from: @(#)lstMember.c 5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: lstMember.c,v 1.2 1993/08/01 18:12:20 mycroft Exp $";
+/* from: static char sccsid[] = "@(#)lstMember.c 5.3 (Berkeley) 6/1/90"; */
+static char *rcsid = "$Id: lstMember.c,v 1.3 1994/03/05 00:35:51 cgd Exp $";
#endif /* not lint */
/*-
diff --git a/usr.bin/make/lst.lib/lstNext.c b/usr.bin/make/lst.lib/lstNext.c
index 35c0415e0a9..4ab00fa7375 100644
--- a/usr.bin/make/lst.lib/lstNext.c
+++ b/usr.bin/make/lst.lib/lstNext.c
@@ -35,8 +35,8 @@
*/
#ifndef lint
-/*static char sccsid[] = "from: @(#)lstNext.c 5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: lstNext.c,v 1.2 1993/08/01 18:12:19 mycroft Exp $";
+/* from: static char sccsid[] = "@(#)lstNext.c 5.3 (Berkeley) 6/1/90"; */
+static char *rcsid = "$Id: lstNext.c,v 1.3 1994/03/05 00:35:52 cgd Exp $";
#endif /* not lint */
/*-
diff --git a/usr.bin/make/lst.lib/lstOpen.c b/usr.bin/make/lst.lib/lstOpen.c
index 7e8cfcc7241..2e239a806cf 100644
--- a/usr.bin/make/lst.lib/lstOpen.c
+++ b/usr.bin/make/lst.lib/lstOpen.c
@@ -35,8 +35,8 @@
*/
#ifndef lint
-/*static char sccsid[] = "from: @(#)lstOpen.c 5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: lstOpen.c,v 1.2 1993/08/01 18:12:18 mycroft Exp $";
+/* from: static char sccsid[] = "@(#)lstOpen.c 5.3 (Berkeley) 6/1/90"; */
+static char *rcsid = "$Id: lstOpen.c,v 1.3 1994/03/05 00:35:54 cgd Exp $";
#endif /* not lint */
/*-
diff --git a/usr.bin/make/lst.lib/lstRemove.c b/usr.bin/make/lst.lib/lstRemove.c
index 69b89168f31..bbac7a1ddaf 100644
--- a/usr.bin/make/lst.lib/lstRemove.c
+++ b/usr.bin/make/lst.lib/lstRemove.c
@@ -35,8 +35,8 @@
*/
#ifndef lint
-/*static char sccsid[] = "from: @(#)lstRemove.c 5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: lstRemove.c,v 1.2 1993/08/01 18:12:17 mycroft Exp $";
+/* from: static char sccsid[] = "@(#)lstRemove.c 5.3 (Berkeley) 6/1/90"; */
+static char *rcsid = "$Id: lstRemove.c,v 1.3 1994/03/05 00:35:55 cgd Exp $";
#endif /* not lint */
/*-
diff --git a/usr.bin/make/lst.lib/lstReplace.c b/usr.bin/make/lst.lib/lstReplace.c
index 9ee0031d66a..82d6fb01d43 100644
--- a/usr.bin/make/lst.lib/lstReplace.c
+++ b/usr.bin/make/lst.lib/lstReplace.c
@@ -35,8 +35,8 @@
*/
#ifndef lint
-/*static char sccsid[] = "from: @(#)lstReplace.c 5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: lstReplace.c,v 1.2 1993/08/01 18:12:16 mycroft Exp $";
+/* from: static char sccsid[] = "@(#)lstReplace.c 5.3 (Berkeley) 6/1/90"; */
+static char *rcsid = "$Id: lstReplace.c,v 1.3 1994/03/05 00:35:56 cgd Exp $";
#endif /* not lint */
/*-
diff --git a/usr.bin/make/lst.lib/lstSucc.c b/usr.bin/make/lst.lib/lstSucc.c
index cfbbf3a9857..f3087ed37ed 100644
--- a/usr.bin/make/lst.lib/lstSucc.c
+++ b/usr.bin/make/lst.lib/lstSucc.c
@@ -35,8 +35,8 @@
*/
#ifndef lint
-/*static char sccsid[] = "from: @(#)lstSucc.c 5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: lstSucc.c,v 1.2 1993/08/01 18:12:14 mycroft Exp $";
+/* from: static char sccsid[] = "@(#)lstSucc.c 5.3 (Berkeley) 6/1/90"; */
+static char *rcsid = "$Id: lstSucc.c,v 1.3 1994/03/05 00:35:57 cgd Exp $";
#endif /* not lint */
/*-