diff options
Diffstat (limited to 'src/block_dumper.h')
-rw-r--r-- | src/block_dumper.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/block_dumper.h b/src/block_dumper.h index e5a2c318..038f0a82 100644 --- a/src/block_dumper.h +++ b/src/block_dumper.h @@ -4,17 +4,17 @@ #ifndef SERD_SRC_BLOCK_DUMPER_H #define SERD_SRC_BLOCK_DUMPER_H -#include "serd/memory.h" #include "serd/output_stream.h" #include "serd/status.h" #include "serd/world.h" +#include "zix/allocator.h" #include "zix/attributes.h" #include <stddef.h> #include <string.h> typedef struct { - SerdAllocator* ZIX_NONNULL allocator; ///< Buffer allocator + ZixAllocator* ZIX_NONNULL allocator; ///< Buffer allocator SerdOutputStream* ZIX_ALLOCATED out; ///< Output stream to write to char* ZIX_ALLOCATED buf; ///< Local buffer if needed |