--- src/usr.bin/make/lst.h 2005/02/23 10:02:27 1.23 +++ src/usr.bin/make/lst.h 2005/03/12 10:39:02 1.24 @@ -144,6 +144,7 @@ void Lst_Concat(Lst *, Lst *, int); ? (LST)->lastPtr : NULL) /* Return successor to given element */ #define Lst_Succ(NODE) (((NODE) == NULL) ? NULL : (NODE)->nextPtr) +#define LST_NEXT(NODE) ((NODE)->nextPtr) /* Get datum from LstNode */ #define Lst_Datum(NODE) ((NODE)->datum)