Changeset 24 in kBuild for branches/FREEBSD/src/kmk/lst.lib/lstForEachFrom.c
- Timestamp:
- Nov 26, 2002 9:24:54 PM (22 years ago)
- File:
-
- 1 edited
-
branches/FREEBSD/src/kmk/lst.lib/lstForEachFrom.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/FREEBSD/src/kmk/lst.lib/lstForEachFrom.c
r9 r24 34 34 * SUCH DAMAGE. 35 35 * 36 * @(#)lstForEachFrom.c 8.1 (Berkeley) 6/6/9336 * $FreeBSD: src/usr.bin/make/lst.lib/lstForEachFrom.c,v 1.7 1999/08/28 01:03:52 peter Exp $ 37 37 */ 38 38 39 39 #ifndef lint 40 #include <sys/cdefs.h> 41 __FBSDID("$FreeBSD: src/usr.bin/make/lst.lib/lstForEachFrom.c,v 1.12 2002/10/09 02:00:22 jmallett Exp $"); 40 static char sccsid[] = "@(#)lstForEachFrom.c 8.1 (Berkeley) 6/6/93"; 42 41 #endif /* not lint */ 43 42 … … 70 69 Lst l; 71 70 LstNode ln; 72 register int (*proc) (void *, void *);73 register void *d;71 register int (*proc) __P((ClientData, ClientData)); 72 register ClientData d; 74 73 { 75 74 register ListNode tln = (ListNode)ln; … … 102 101 */ 103 102 done = (next == tln->nextPtr && 104 (next == N ULL|| next == list->firstPtr));103 (next == NilListNode || next == list->firstPtr)); 105 104 106 105 next = tln->nextPtr;
Note:
See TracChangeset
for help on using the changeset viewer.

