diff options
Diffstat (limited to 'zix/strindex.c')
-rw-r--r-- | zix/strindex.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/zix/strindex.c b/zix/strindex.c index f98b1b0..a502177 100644 --- a/zix/strindex.c +++ b/zix/strindex.c @@ -16,14 +16,15 @@ #define _XOPEN_SOURCE 500 +#include "zix/strindex.h" + +#include "zix/common.h" + #include <assert.h> #include <stdio.h> #include <stdlib.h> #include <string.h> -#include "zix/common.h" -#include "zix/strindex.h" - typedef struct _ZixStrindexNode { struct _ZixStrindexNode* children; /* Children of this node */ size_t num_children; /* Number of outgoing edges */ |