aboutsummaryrefslogtreecommitdiff
path: root/lib/alloc/heapalloc.c
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-05-08 12:32:10 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-05-08 12:32:10 +0200
commit8f6d296a23675687177afd697cb28d195252466e (patch)
treed678a6cf14e5faa59c2b22459300e6d3477bb0ef /lib/alloc/heapalloc.c
parent30e8e14cba8b278cbb15ff74d9447482e828b7aa (diff)
Add a heap allocator
Diffstat (limited to 'lib/alloc/heapalloc.c')
-rw-r--r--lib/alloc/heapalloc.c12
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;
+}