diff options
Diffstat (limited to 'src/list.h')
-rw-r--r-- | src/list.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -20,6 +20,8 @@ #ifndef _LIST_H_ #define _LIST_H_ +#include "version.h" + typedef struct list_item_t { void *data; struct list_item_t *next; @@ -42,6 +44,5 @@ void clist_remove (list_t *, list_item_t *); iterator_t clist_iterator (list_t *); int clist_iterator_has_next(iterator_t); void *clist_iterator_next (iterator_t *); -char* clist_version (void); #endif |