diff options
Diffstat (limited to 'include/zix/allocator.h')
-rw-r--r-- | include/zix/allocator.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/zix/allocator.h b/include/zix/allocator.h index 5ab8bf8..a9064bb 100644 --- a/include/zix/allocator.h +++ b/include/zix/allocator.h @@ -96,12 +96,12 @@ typedef void (*ZixAlignedFreeFunc)( // /// Definition of ZixAllocator struct ZixAllocatorImpl { - ZixMallocFunc ZIX_NONNULL malloc; ///< Allocate - ZixCallocFunc ZIX_NONNULL calloc; ///< Allocate and zero - ZixReallocFunc ZIX_NONNULL realloc; ///< Reallocate - ZixFreeFunc ZIX_NONNULL free; ///< Free - ZixAlignedAllocFunc ZIX_NONNULL aligned_alloc; ///< Allocate aligned - ZixAlignedFreeFunc ZIX_NONNULL aligned_free; ///< Free aligned + ZixMallocFunc ZIX_UNSPECIFIED malloc; ///< Allocate + ZixCallocFunc ZIX_UNSPECIFIED calloc; ///< Allocate and zero + ZixReallocFunc ZIX_UNSPECIFIED realloc; ///< Reallocate + ZixFreeFunc ZIX_UNSPECIFIED free; ///< Free + ZixAlignedAllocFunc ZIX_UNSPECIFIED aligned_alloc; ///< Allocate aligned + ZixAlignedFreeFunc ZIX_UNSPECIFIED aligned_free; ///< Free aligned }; /// Return the default allocator which simply uses the system allocator |