diff options
Diffstat (limited to 'usr.bin/make/lst.lib/lstInit.c')
-rw-r--r-- | usr.bin/make/lst.lib/lstInit.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/usr.bin/make/lst.lib/lstInit.c b/usr.bin/make/lst.lib/lstInit.c index 57059a3..f2cdf22 100644 --- a/usr.bin/make/lst.lib/lstInit.c +++ b/usr.bin/make/lst.lib/lstInit.c @@ -57,16 +57,13 @@ __FBSDID("$FreeBSD$"); * 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; @@ -75,7 +72,6 @@ Lst_Init(Boolean circ) nList->firstPtr = NULL; nList->lastPtr = NULL; nList->isOpen = FALSE; - nList->isCirc = circ; nList->atEnd = LstUnknown; return (nList); |