From 972d6db1ca14d90fc3676b343115398d30ba5e17 Mon Sep 17 00:00:00 2001 From: harti Date: Thu, 9 Dec 2004 15:31:32 +0000 Subject: Nobody actually checked the return codes from Lst_Append and Lst_Insert so don't return anything. --- usr.bin/make/lst.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.bin/make/lst.h') diff --git a/usr.bin/make/lst.h b/usr.bin/make/lst.h index e9c8f1c..f78d523 100644 --- a/usr.bin/make/lst.h +++ b/usr.bin/make/lst.h @@ -112,9 +112,9 @@ void Lst_Destroy(Lst *, FreeProc *); * Functions to modify a list */ /* Insert an element before another */ -ReturnStatus Lst_Insert(Lst *, LstNode *, void *); +void Lst_Insert(Lst *, LstNode *, void *); /* Insert an element after another */ -ReturnStatus Lst_Append(Lst *, LstNode *, void *); +void Lst_Append(Lst *, LstNode *, void *); /* Place an element at the front of a lst. */ #define Lst_AtFront(LST, D) (Lst_Insert((LST), Lst_First(LST), (D))) /* Place an element at the end of a lst. */ -- cgit v1.1