--- src/usr.bin/make/lst.h 2004/12/09 19:16:03 1.11 +++ src/usr.bin/make/lst.h 2004/12/16 23:24:09 1.12 @@ -80,8 +80,6 @@ typedef enum { struct Lst { LstNode firstPtr; /* first node in list */ LstNode lastPtr; /* last node in list */ - Boolean isCirc; /* true if the list should be considered - * circular */ /* * fields for sequential access */ @@ -114,7 +112,7 @@ typedef void FreeProc(void *); * Creation/destruction functions */ /* Create a new list */ -Lst Lst_Init(Boolean); +Lst Lst_Init(void); /* Duplicate an existing list */ Lst Lst_Duplicate(Lst, DuplicateProc *); /* Destroy an old one */