diff options
Diffstat (limited to 'include/list.h')
-rw-r--r-- | include/list.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/list.h b/include/list.h index b6342d1..9f486b0 100644 --- a/include/list.h +++ b/include/list.h @@ -14,10 +14,6 @@ typedef struct { uint8_t *elements; } list_t; -typedef struct { - void *ptr; -} ptr_wrapper_t; - list_t *list_create(size_t element_size); void list_add(list_t *list, void *element); void *list_get(list_t *list, size_t i); |