diff options
Diffstat (limited to 'tools/console.h')
-rw-r--r-- | tools/console.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/console.h b/tools/console.h index 7e59862d..75755360 100644 --- a/tools/console.h +++ b/tools/console.h @@ -7,7 +7,6 @@ #include "serd/env.h" #include "serd/input_stream.h" #include "serd/log.h" -#include "serd/memory.h" #include "serd/output_stream.h" #include "serd/reader.h" #include "serd/sink.h" @@ -15,6 +14,7 @@ #include "serd/syntax.h" #include "serd/world.h" #include "serd/writer.h" +#include "zix/allocator.h" #include "zix/string_view.h" #include <stdbool.h> @@ -108,10 +108,10 @@ SerdStatus serd_parse_common_option(OptionIter* iter, SerdCommonOptions* opts); SerdEnv* -serd_create_env(SerdAllocator* allocator, - const char* program, - const char* base_string, - const char* out_filename); +serd_create_env(ZixAllocator* allocator, + const char* program, + const char* base_string, + const char* out_filename); SerdInputStream serd_open_tool_input(const char* filename); |