summaryrefslogtreecommitdiff
path: root/lib/linklist.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/linklist.c')
-rw-r--r--lib/linklist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/linklist.c b/lib/linklist.c
index 4c471533..71c4db82 100644
--- a/lib/linklist.c
+++ b/lib/linklist.c
@@ -26,7 +26,7 @@
/* Allocate new list. */
struct list *
-list_new ()
+list_new (void)
{
struct list *new;
@@ -44,7 +44,7 @@ list_free (struct list *l)
/* Allocate new listnode. Internal use only. */
static struct listnode *
-listnode_new ()
+listnode_new (void)
{
struct listnode *node;