summaryrefslogtreecommitdiff
path: root/new/alloc_darwin.m
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2015-04-06 19:04:13 -0400
committerPietro Gagliardi <[email protected]>2015-04-06 19:04:13 -0400
commite4d6d11925e7da8eb8b6c2960ddff88245b876ff (patch)
tree108614ac94157838c121d5ec9358ca76f6b15374 /new/alloc_darwin.m
parent9001ca34f73ad861c049f367e2ef8477d19e7432 (diff)
Started writing the same but for Mac OS X. This time it's not tested yet; will test now.
Diffstat (limited to 'new/alloc_darwin.m')
-rw-r--r--new/alloc_darwin.m31
1 files changed, 31 insertions, 0 deletions
diff --git a/new/alloc_darwin.m b/new/alloc_darwin.m
new file mode 100644
index 0000000..48b2a12
--- /dev/null
+++ b/new/alloc_darwin.m
@@ -0,0 +1,31 @@
+// 4 december 2014
+#include "ui_darwin.h"
+
+void *uiAlloc(size_t size)
+{
+ void *out;
+
+ out = malloc(size);
+ NSAssert(out != NULL, @"out of memory in uiAlloc()");
+ memset(out, 0, size);
+ return out;
+}
+
+void *uiRealloc(void *p, size_t size)
+{
+ void *out;
+
+ if (p == NULL)
+ return uiAlloc(size);
+ out = realloc(p, size);
+ NSAssert(out != NULL, @"out of memory in uiRealloc()");
+ // TODO zero the extra memory
+ return out;
+}
+
+void uiFree(void *p)
+{
+ if (p == NULL)
+ return;
+ free(p);
+}