--- src/usr.bin/make/lst.lib/Attic/lstInit.c 2004/12/08 11:26:39 1.5 +++ src/usr.bin/make/lst.lib/Attic/lstInit.c 2004/12/16 23:24:10 1.6 @@ -55,16 +55,13 @@ * Results: * The created list. * - * Arguments: - * circ TRUE if the list should be made circular - * * Side Effects: * A list is created, what else? * *----------------------------------------------------------------------- */ Lst -Lst_Init(Boolean circ) +Lst_Init(void) { Lst nList; @@ -73,7 +70,6 @@ Lst_Init(Boolean circ) nList->firstPtr = NULL; nList->lastPtr = NULL; nList->isOpen = FALSE; - nList->isCirc = circ; nList->atEnd = LstUnknown; return (nList);