Ignore:
Timestamp:
Nov 26, 2002, 10:24:54 PM (23 years ago)
Author:
bird
Message:

Import of RELENG_4_7_0_RELEASE

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/FREEBSD/src/kmk/lst.lib/lstFind.c

    r9 r24  
    3434 * SUCH DAMAGE.
    3535 *
    36  * @(#)lstFind.c        8.1 (Berkeley) 6/6/93
     36 * $FreeBSD: src/usr.bin/make/lst.lib/lstFind.c,v 1.6 1999/08/28 01:03:50 peter Exp $
    3737 */
    3838
    3939#ifndef lint
    40 #include <sys/cdefs.h>
    41 __FBSDID("$FreeBSD: src/usr.bin/make/lst.lib/lstFind.c,v 1.11 2002/10/09 02:00:22 jmallett Exp $");
     40static char sccsid[] = "@(#)lstFind.c   8.1 (Berkeley) 6/6/93";
    4241#endif /* not lint */
    4342
     
    5655 *
    5756 * Results:
    58  *      The found node or NULL if none matches.
     57 *      The found node or NILLNODE if none matches.
    5958 *
    6059 * Side Effects:
     
    6665Lst_Find (l, d, cProc)
    6766    Lst         l;
    68     void *      d;
    69     int         (*cProc)(void *, void *);
     67    ClientData  d;
     68    int         (*cProc) __P((ClientData, ClientData));
    7069{
    7170    return (Lst_FindFrom (l, Lst_First(l), d, cProc));
Note: See TracChangeset for help on using the changeset viewer.