=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/lst.h,v retrieving revision 1.30 retrieving revision 1.31 diff -u -r1.30 -r1.31 --- src/usr.bin/make/lst.h 2015/10/14 13:50:22 1.30 +++ src/usr.bin/make/lst.h 2015/10/14 13:52:11 1.31 @@ -1,7 +1,7 @@ #ifndef _LST_H_ #define _LST_H_ -/* $OpenBSD: lst.h,v 1.30 2015/10/14 13:50:22 espie Exp $ */ +/* $OpenBSD: lst.h,v 1.31 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 @@ typedef void (*SimpleProc)(void *); typedef bool (*FindProc)(void *, void *); -typedef int (*ForEachNodeWhileProc)(LstNode, void *); typedef int (*FindProcConst)(void *, const void *); typedef void (*ForEachProc)(void *, void *); typedef void *(*DuplicateProc)(void *); @@ -129,8 +128,6 @@ /* Apply a function to elements of a lst starting from a certain point. */ 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 *); /*