diff options
Diffstat (limited to 'include/zix/bump_allocator.h')
-rw-r--r-- | include/zix/bump_allocator.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/zix/bump_allocator.h b/include/zix/bump_allocator.h index c69de92..b5fdd7e 100644 --- a/include/zix/bump_allocator.h +++ b/include/zix/bump_allocator.h @@ -4,8 +4,8 @@ #ifndef ZIX_BUMP_ALLOCATOR_H #define ZIX_BUMP_ALLOCATOR_H -#include "zix/allocator.h" -#include "zix/attributes.h" +#include <zix/allocator.h> +#include <zix/attributes.h> #include <stddef.h> @@ -52,8 +52,7 @@ typedef struct { } ZixBumpAllocator; /// Return a bump allocator that works within a provided buffer -ZIX_API -ZixBumpAllocator +ZIX_API ZixBumpAllocator zix_bump_allocator(size_t capacity, void* ZIX_NONNULL buffer); /** |