Changeset 24 in kBuild for branches/FREEBSD/src/kmk/lst.lib/lstForEach.c
- Timestamp:
- Nov 26, 2002 9:24:54 PM (22 years ago)
- File:
-
- 1 edited
-
branches/FREEBSD/src/kmk/lst.lib/lstForEach.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/FREEBSD/src/kmk/lst.lib/lstForEach.c
r9 r24 34 34 * SUCH DAMAGE. 35 35 * 36 * @(#)lstForEach.c 8.1 (Berkeley) 6/6/9336 * $FreeBSD: src/usr.bin/make/lst.lib/lstForEach.c,v 1.6 1999/08/28 01:03:51 peter Exp $ 37 37 */ 38 38 39 39 #ifndef lint 40 #include <sys/cdefs.h> 41 __FBSDID("$FreeBSD: src/usr.bin/make/lst.lib/lstForEach.c,v 1.10 2002/10/09 02:00:22 jmallett Exp $"); 40 static char sccsid[] = "@(#)lstForEach.c 8.1 (Berkeley) 6/6/93"; 42 41 #endif /* not lint */ 43 42 … … 68 67 Lst_ForEach (l, proc, d) 69 68 Lst l; 70 register int (*proc) (void *, void *);71 register void *d;69 register int (*proc) __P((ClientData, ClientData)); 70 register ClientData d; 72 71 { 73 72 Lst_ForEachFrom(l, Lst_First(l), proc, d);
Note:
See TracChangeset
for help on using the changeset viewer.

