diff options
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); |