Module Name: othersrc
Committed By: dholland
Date: Sat Mar 23 17:11:22 UTC 2013
Modified Files:
othersrc/usr.bin/dholland-make2: targ.c
Log Message:
Update comment.
To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 othersrc/usr.bin/dholland-make2/targ.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: othersrc/usr.bin/dholland-make2/targ.c
diff -u othersrc/usr.bin/dholland-make2/targ.c:1.8 othersrc/usr.bin/dholland-make2/targ.c:1.9
--- othersrc/usr.bin/dholland-make2/targ.c:1.8 Tue Mar 5 04:27:27 2013
+++ othersrc/usr.bin/dholland-make2/targ.c Sat Mar 23 17:11:22 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: targ.c,v 1.8 2013/03/05 04:27:27 dholland Exp $ */
+/* $NetBSD: targ.c,v 1.9 2013/03/23 17:11:22 dholland Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1993
@@ -74,8 +74,8 @@
/*-
* targ.c --
- * Functions for maintaining the Lst allTargets. Target nodes are
- * kept in two structures: a Lst, maintained by the list library, and a
+ * Functions for maintaining the array allTargets. Target nodes are
+ * kept in two structures: an array, maintained by the array code, and a
* hash table, maintained by the hash library.
*
* Interface:
@@ -127,7 +127,7 @@
#include "hash.h"
#include "dir.h"
-MAKE_RCSID("$NetBSD: targ.c,v 1.8 2013/03/05 04:27:27 dholland Exp $");
+MAKE_RCSID("$NetBSD: targ.c,v 1.9 2013/03/23 17:11:22 dholland Exp $");
static GList allTargets; /* the list of all targets found so far */
#ifdef CLEANUP