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/lstInit.c

    r9 r24  
    3434 * SUCH DAMAGE.
    3535 *
    36  * @(#)lstInit.c        8.1 (Berkeley) 6/6/93
     36 * $FreeBSD: src/usr.bin/make/lst.lib/lstInit.c,v 1.6 1999/08/28 01:03:52 peter Exp $
    3737 */
    3838
    3939#ifndef lint
    40 #include <sys/cdefs.h>
    41 __FBSDID("$FreeBSD: src/usr.bin/make/lst.lib/lstInit.c,v 1.9 2002/10/09 02:00:22 jmallett Exp $");
     40static char sccsid[] = "@(#)lstInit.c   8.1 (Berkeley) 6/6/93";
    4241#endif /* not lint */
    4342
     
    7069    PAlloc (nList, List);
    7170
    72     nList->firstPtr = NULL;
    73     nList->lastPtr = NULL;
     71    nList->firstPtr = NilListNode;
     72    nList->lastPtr = NilListNode;
    7473    nList->isOpen = FALSE;
    7574    nList->isCirc = circ;
Note: See TracChangeset for help on using the changeset viewer.