diff options
Diffstat (limited to 'src/llist.h')
-rw-r--r-- | src/llist.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/llist.h b/src/llist.h index d7e4249..cdab18d 100644 --- a/src/llist.h +++ b/src/llist.h @@ -44,6 +44,7 @@ struct llist_item { typedef struct llist llist_t; struct llist { struct llist_item *head; + struct llist_item *tail; }; typedef int (*llist_fn_cmp_t) (void *, void *); |