aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/make/lst.h
diff options
context:
space:
mode:
authorHartmut Brandt <harti@FreeBSD.org>2004-12-07 10:14:16 +0000
committerHartmut Brandt <harti@FreeBSD.org>2004-12-07 10:14:16 +0000
commit644a6874f9ad1e792ff3550ba4ec509c2ca957af (patch)
treedc544ee893c2b95a0e4d64009cb9fe98b5598e7c /usr.bin/make/lst.h
parent20a92a18f1fb48db2bb6fcb4c03501b5ca3c3b5e (diff)
downloadsrc-644a6874f9ad1e792ff3550ba4ec509c2ca957af.tar.gz
src-644a6874f9ad1e792ff3550ba4ec509c2ca957af.zip
Make needs no circular lists so remove them from the list code.
Notes
Notes: svn path=/head/; revision=138510
Diffstat (limited to 'usr.bin/make/lst.h')
-rw-r--r--usr.bin/make/lst.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/make/lst.h b/usr.bin/make/lst.h
index ce2341a1586f..b3ac17662215 100644
--- a/usr.bin/make/lst.h
+++ b/usr.bin/make/lst.h
@@ -79,8 +79,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
*/
@@ -113,7 +111,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 */