aboutsummaryrefslogtreecommitdiff
path: root/libc/inc
diff options
context:
space:
mode:
Diffstat (limited to 'libc/inc')
-rw-r--r--libc/inc/list.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/inc/list.h b/libc/inc/list.h
index 5deaf59..0a5c6c0 100644
--- a/libc/inc/list.h
+++ b/libc/inc/list.h
@@ -19,7 +19,7 @@ struct node {
struct list *list_new();
/* struct node *list_new_node(); */ // TODO: Make node-specific things static/private?
/* void list_add_node(struct list *list, struct node *node); */
-void list_add(struct list *list, void *data);
+struct node *list_add(struct list *list, void *data);
void list_remove(struct list *list, struct node *node);
#endif