diff options
Diffstat (limited to 'zix/sorted_array.c')
-rw-r--r-- | zix/sorted_array.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/zix/sorted_array.c b/zix/sorted_array.c index f8e785d..8929d35 100644 --- a/zix/sorted_array.c +++ b/zix/sorted_array.c @@ -14,15 +14,15 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include "zix/sorted_array.h" + +#include "zix/common.h" + #include <assert.h> #include <stdint.h> -#include <stdio.h> #include <stdlib.h> #include <string.h> -#include "zix/common.h" -#include "zix/sorted_array.h" - // #define ZIX_SORTED_ARRAY_DUMP 1 struct ZixSortedArrayImpl { |