diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-05-08 12:32:10 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-05-08 12:32:10 +0200 |
commit | 8f6d296a23675687177afd697cb28d195252466e (patch) | |
tree | d678a6cf14e5faa59c2b22459300e6d3477bb0ef /lib/alloc | |
parent | 30e8e14cba8b278cbb15ff74d9447482e828b7aa (diff) |
Add a heap allocator
Diffstat (limited to 'lib/alloc')
-rw-r--r-- | lib/alloc/heapalloc.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/alloc/heapalloc.c b/lib/alloc/heapalloc.c new file mode 100644 index 0000000..0a698f0 --- /dev/null +++ b/lib/alloc/heapalloc.c @@ -0,0 +1,12 @@ +#include <stdlib.h> + +#include "alloc.h" + +void * +heapalloc(void *, void *ptr, size_t, size_t new) +{ + if (new > 0) + return realloc(ptr, new); + free(ptr); + return nullptr; +} |