diff options
Diffstat (limited to 'usr.bin/make/lst.lib/lstFind.c')
-rw-r--r-- | usr.bin/make/lst.lib/lstFind.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/lst.lib/lstFind.c b/usr.bin/make/lst.lib/lstFind.c index 1efdc54..bab85cc 100644 --- a/usr.bin/make/lst.lib/lstFind.c +++ b/usr.bin/make/lst.lib/lstFind.c @@ -35,7 +35,7 @@ */ #ifndef lint -static char sccsid[] = "@(#)lstFind.c 8.1 (Berkeley) 6/6/93"; +static char sccsid[] = "@(#)lstFind.c 8.2 (Berkeley) 4/28/95"; #endif /* not lint */ /*- @@ -63,7 +63,7 @@ LstNode Lst_Find (l, d, cProc) Lst l; ClientData d; - int (*cProc)(); + int (*cProc) __P((ClientData, ClientData)); { return (Lst_FindFrom (l, Lst_First(l), d, cProc)); } |