diff options
| author | Louis Burda <quent.burda@gmail.com> | 2023-03-18 18:50:17 +0100 |
|---|---|---|
| committer | Louis Burda <quent.burda@gmail.com> | 2023-03-18 18:50:17 +0100 |
| commit | 7bb4bd65d7a11bbf4ad4e085aa2a32d5028585dd (patch) | |
| tree | b2f4a4093246fcbd380ab0d4fcef882af097e014 /include | |
| parent | 22d274eb7a43de119af51cf46a892aa6be6a7d91 (diff) | |
| download | liballoc-c-7bb4bd65d7a11bbf4ad4e085aa2a32d5028585dd.tar.gz liballoc-c-7bb4bd65d7a11bbf4ad4e085aa2a32d5028585dd.zip | |
Add strict variants of stack and heap allocators
Diffstat (limited to 'include')
| -rw-r--r-- | include/allocator.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/allocator.h b/include/allocator.h index 4cec7da..20dbede 100644 --- a/include/allocator.h +++ b/include/allocator.h @@ -9,4 +9,6 @@ struct allocator { }; extern struct allocator stdlib_stack_allocator; +extern struct allocator stdlib_strict_stack_allocator; extern struct allocator stdlib_heap_allocator; +extern struct allocator stdlib_strict_heap_allocator; |
