summaryrefslogtreecommitdiffstats
path: root/list.h
diff options
context:
space:
mode:
authorpgen <p.gen.progs@gmail.com>2019-03-29 22:42:45 +0100
committerpgen <p.gen.progs@gmail.com>2019-03-30 11:39:03 +0100
commitae76ad0e8df96a5e6ea0b503b0c4015659bfe3ea (patch)
tree2a08e533413b2ab45a90f44b27f1d8401c05964c /list.h
parentc264b6de8a6cd615bc32f056cc11ff4c578af580 (diff)
Silent compiler warnings
Diffstat (limited to 'list.h')
-rw-r--r--list.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/list.h b/list.h
index bbb506c..2dd906a 100644
--- a/list.h
+++ b/list.h
@@ -43,11 +43,11 @@ ll_insert_before(ll_t * const list, ll_node_t * node, void * const data);
void
ll_insert_after(ll_t * const list, ll_node_t * node, void * const data);
-static ll_node_t *
+ll_node_t *
ll_partition(ll_node_t * l, ll_node_t * h, int (*comp)(void *, void *),
void (*swap)(void *, void *));
-static void
+void
ll_quicksort(ll_node_t * l, ll_node_t * h, int (*comp)(void *, void *),
void (*swap)(void * a, void *));