diff options
author | David Robillard <d@drobilla.net> | 2019-01-06 17:04:21 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-01-06 17:04:21 +0100 |
commit | 5807e4a873730fdb245b3c39913fc6acb3779f8a (patch) | |
tree | 0dd771ec001522848c37709a15af8692f9713208 /test/dict_bench.c | |
parent | ef51139dfb60850c9ee4f6d9ea4ea7bfbc4aa15a (diff) | |
download | zix-5807e4a873730fdb245b3c39913fc6acb3779f8a.tar.gz zix-5807e4a873730fdb245b3c39913fc6acb3779f8a.tar.bz2 zix-5807e4a873730fdb245b3c39913fc6acb3779f8a.zip |
Clean up includes
Diffstat (limited to 'test/dict_bench.c')
-rw-r--r-- | test/dict_bench.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/dict_bench.c b/test/dict_bench.c index 228d25c..03be89e 100644 --- a/test/dict_bench.c +++ b/test/dict_bench.c @@ -16,20 +16,20 @@ #include "bench.h" -#include <ctype.h> -#include <stdarg.h> -#include <stdio.h> -#include <stdlib.h> -#include <string.h> - -#include <glib.h> - #include "zix/ampatree.h" #include "zix/chunk.h" #include "zix/hash.h" #include "zix/patree.h" #include "zix/trie.h" +#include <glib.h> + +#include <ctype.h> +#include <stdarg.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> + static const unsigned seed = 1; static int |