diff options
Diffstat (limited to 'usr.bin/make/lst.lib/lst.h')
| -rw-r--r-- | usr.bin/make/lst.lib/lst.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/make/lst.lib/lst.h b/usr.bin/make/lst.lib/lst.h index fecbb438691..a05dc78781d 100644 --- a/usr.bin/make/lst.lib/lst.h +++ b/usr.bin/make/lst.lib/lst.h @@ -1,7 +1,7 @@ #ifndef _LST_H_ #define _LST_H_ -/* $OpenBSD: lst.h,v 1.1 2014/05/12 19:11:20 espie Exp $ */ +/* $OpenBSD: lst.h,v 1.2 2015/10/14 13:52:11 espie Exp $ */ /* $NetBSD: lst.h,v 1.7 1996/11/06 17:59:12 christos Exp $ */ /* @@ -60,7 +60,6 @@ struct ListNode_ { typedef void (*SimpleProc)(void *); typedef int (*FindProc)(void *, void *); -typedef int (*ForEachNodeWhileProc)(LstNode, void *); typedef int (*FindProcConst)(void *, const void *); typedef void (*ForEachProc)(void *, void *); typedef void *(*DuplicateProc)(void *); @@ -130,8 +129,6 @@ extern LstNode Lst_Member(Lst, void *); extern void Lst_ForEachFrom(LstNode, ForEachProc, void *); extern void Lst_Every(Lst, SimpleProc); -extern void Lst_ForEachNodeWhile(Lst, ForEachNodeWhileProc, void *); - extern bool Lst_AddNew(Lst, void *); /* * for using the list as a queue |
