summaryrefslogtreecommitdiffstats
path: root/zix/patree.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-01-06 17:04:21 +0100
committerDavid Robillard <d@drobilla.net>2019-01-06 17:04:21 +0100
commit5807e4a873730fdb245b3c39913fc6acb3779f8a (patch)
tree0dd771ec001522848c37709a15af8692f9713208 /zix/patree.c
parentef51139dfb60850c9ee4f6d9ea4ea7bfbc4aa15a (diff)
downloadzix-5807e4a873730fdb245b3c39913fc6acb3779f8a.tar.gz
zix-5807e4a873730fdb245b3c39913fc6acb3779f8a.tar.bz2
zix-5807e4a873730fdb245b3c39913fc6acb3779f8a.zip
Clean up includes
Diffstat (limited to 'zix/patree.c')
-rw-r--r--zix/patree.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/zix/patree.c b/zix/patree.c
index efb52b5..fe552d8 100644
--- a/zix/patree.c
+++ b/zix/patree.c
@@ -16,7 +16,13 @@
#define _XOPEN_SOURCE 500
+#include "zix/patree.h"
+
+#include "zix/common.h"
+#include "zix/trie_util.h"
+
#include <assert.h>
+#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
@@ -24,10 +30,6 @@
// #define ZIX_TRIE_LINEAR_SEARCH 1
-#include "zix/common.h"
-#include "zix/patree.h"
-#include "zix/trie_util.h"
-
typedef size_t n_edges_t;
typedef struct {