diff options
Diffstat (limited to 'src/node.h')
-rw-r--r-- | src/node.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -4,10 +4,10 @@ #ifndef SERD_SRC_NODE_H #define SERD_SRC_NODE_H -#include "serd/memory.h" #include "serd/node.h" #include "serd/status.h" #include "serd/write_result.h" +#include "zix/allocator.h" #include "zix/attributes.h" #include <assert.h> @@ -87,14 +87,14 @@ serd_node_pattern_match(const SerdNode* ZIX_NULLABLE a, } ZIX_MALLOC_FUNC SerdNode* ZIX_ALLOCATED -serd_node_malloc(SerdAllocator* ZIX_NULLABLE allocator, size_t size); +serd_node_malloc(ZixAllocator* ZIX_NULLABLE allocator, size_t size); ZIX_MALLOC_FUNC SerdNode* ZIX_ALLOCATED -serd_node_try_malloc(SerdAllocator* ZIX_NULLABLE allocator, - SerdWriteResult result); +serd_node_try_malloc(ZixAllocator* ZIX_NULLABLE allocator, + SerdWriteResult result); SerdStatus -serd_node_set(SerdAllocator* ZIX_NULLABLE allocator, +serd_node_set(ZixAllocator* ZIX_NULLABLE allocator, SerdNode* ZIX_NONNULL* ZIX_NONNULL dst, const SerdNode* ZIX_NONNULL src); |