summaryrefslogtreecommitdiff
path: root/src/pacman/list.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pacman/list.h')
-rw-r--r--src/pacman/list.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pacman/list.h b/src/pacman/list.h
index 13ad034a..86ebdff9 100644
--- a/src/pacman/list.h
+++ b/src/pacman/list.h
@@ -31,7 +31,7 @@ typedef struct __list_t {
#define FREELIST(p) do { if(p) { list_free(p); p = NULL; } } while(0)
-list_t *list_new();
+list_t *list_new(void);
void list_free(list_t* list);
list_t *list_add(list_t* list, void *data);
int list_count(list_t* list);