summaryrefslogtreecommitdiff
path: root/memory.h
diff options
context:
space:
mode:
Diffstat (limited to 'memory.h')
-rw-r--r--memory.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/memory.h b/memory.h
new file mode 100644
index 0000000..076261d
--- /dev/null
+++ b/memory.h
@@ -0,0 +1,13 @@
+#pragma once
+
+#include <stdlib.h>
+
+
+#define malloc(num, type) \
+ ((type*)check_after_allocation("malloc", malloc((num)*sizeof(type))))
+#define calloc(num, type) \
+ ((type*)check_after_allocation("calloc", calloc((num), sizeof(type))))
+#define realloc(ptr, num, type) \
+ ((type*)check_after_allocation("realloc", realloc(ptr, (num)*sizeof(type))))
+
+void* check_after_allocation(const char *funcname, void *ptr);