diff options
author | peter <peter@FreeBSD.org> | 1996-10-06 15:57:15 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1996-10-06 15:57:15 +0000 |
commit | 4370a5a248c28b9ebcc0cf8c4b8280ffaabf8e00 (patch) | |
tree | 1a7a5d8132f1feb3d2ce835bc720e0d9f208ff62 /usr.bin/make/lst.lib/lstForEach.c | |
parent | 7bee03ad1db0ca4a78d6e5ff8dd19b3286eea5eb (diff) | |
download | FreeBSD-src-4370a5a248c28b9ebcc0cf8c4b8280ffaabf8e00.zip FreeBSD-src-4370a5a248c28b9ebcc0cf8c4b8280ffaabf8e00.tar.gz |
Import the 4.4BSD-Lite2 version of make onto the vendor branch
"for reference". This doesn't change anything since all files
have been touched.
Diffstat (limited to 'usr.bin/make/lst.lib/lstForEach.c')
-rw-r--r-- | usr.bin/make/lst.lib/lstForEach.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/lst.lib/lstForEach.c b/usr.bin/make/lst.lib/lstForEach.c index 9fbdca5..1d6ba93 100644 --- a/usr.bin/make/lst.lib/lstForEach.c +++ b/usr.bin/make/lst.lib/lstForEach.c @@ -35,7 +35,7 @@ */ #ifndef lint -static char sccsid[] = "@(#)lstForEach.c 8.1 (Berkeley) 6/6/93"; +static char sccsid[] = "@(#)lstForEach.c 8.2 (Berkeley) 4/28/95"; #endif /* not lint */ /*- @@ -64,7 +64,7 @@ static char sccsid[] = "@(#)lstForEach.c 8.1 (Berkeley) 6/6/93"; void Lst_ForEach (l, proc, d) Lst l; - register int (*proc)(); + register int (*proc) __P((ClientData, ClientData)); register ClientData d; { Lst_ForEachFrom(l, Lst_First(l), proc, d); |