aboutsummaryrefslogtreecommitdiff
path: root/libc/inc/list.h
diff options
context:
space:
mode:
Diffstat (limited to 'libc/inc/list.h')
-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 50b21c2..0b82b48 100644
--- a/libc/inc/list.h
+++ b/libc/inc/list.h
@@ -16,7 +16,7 @@ struct node {
struct node *prev;
};
-struct list *list_new();
+struct list *list_new(void);
void list_destroy(struct list *list);
/* struct node *list_new_node(); */ // TODO: Make node-specific things static/private?
/* void list_add_node(struct list *list, struct node *node); */