diff options
-rw-r--r-- | usr.bin/make/lst.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/make/lst.h b/usr.bin/make/lst.h index 76535cc..b6b57a0 100644 --- a/usr.bin/make/lst.h +++ b/usr.bin/make/lst.h @@ -143,6 +143,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) |