diff options
author | David Robillard <d@drobilla.net> | 2022-12-19 17:55:02 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-12-02 18:49:08 -0500 |
commit | 0f9816d67bc67a396607291f845ca2a33c2285a7 (patch) | |
tree | b31fd1b344305dc984a2109084fa183573a0ae43 /tools/console.h | |
parent | 258ea2ff59bbd2127ea446cf4b9676ad3d7fe53d (diff) | |
download | serd-0f9816d67bc67a396607291f845ca2a33c2285a7.tar.gz serd-0f9816d67bc67a396607291f845ca2a33c2285a7.tar.bz2 serd-0f9816d67bc67a396607291f845ca2a33c2285a7.zip |
Use ZixAllocator directly
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); |