summaryrefslogtreecommitdiff
path: root/new/unix/alloc.c
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2015-04-16 20:33:28 -0400
committerPietro Gagliardi <[email protected]>2015-04-16 20:33:28 -0400
commite34c561ed5bedeb180437ec165882b98d70d38c1 (patch)
treed095e5db16d7a23e883526c8c1d3c524639c97cf /new/unix/alloc.c
parentde9d72299fb89a8b6cdc8963cd6b6ae708a81e80 (diff)
Split the rewrite into a new repository.
Diffstat (limited to 'new/unix/alloc.c')
-rw-r--r--new/unix/alloc.c33
1 files changed, 0 insertions, 33 deletions
diff --git a/new/unix/alloc.c b/new/unix/alloc.c
deleted file mode 100644
index 33482b2..0000000
--- a/new/unix/alloc.c
+++ /dev/null
@@ -1,33 +0,0 @@
-// 7 april 2015
-#include <stdio.h>
-#include "uipriv_unix.h"
-
-void *uiAlloc(size_t size, const char *type)
-{
- void *out;
-
- out = g_malloc0(size);
- if (options.debugLogAllocations)
- fprintf(stderr, "%p alloc %s\n", out, type);
- return out;
-}
-
-void *uiRealloc(void *p, size_t size, const char *type)
-{
- void *out;
-
- if (p == NULL)
- return uiAlloc(size, type);
- // TODO fill with 0s
- out = g_realloc(p, size);
- if (options.debugLogAllocations)
- fprintf(stderr, "%p realloc %p\n", p, out);
- return out;
-}
-
-void uiFree(void *p)
-{
- g_free(p);
- if (options.debugLogAllocations)
- fprintf(stderr, "%p free\n", p);
-}