summaryrefslogtreecommitdiff
path: root/utils.h
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2014-05-27 20:30:20 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2014-05-27 20:30:20 -0700
commitcefec39d93846c2d034be9a89f48466831eddde6 (patch)
tree8acb764330433c0f539290d804ff2c9044c11c57 /utils.h
parentab92831be0e862622105f015fe8c390715d2aae9 (diff)
Replace custom uAlloc/uCalloc with plain malloc/calloc
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'utils.h')
-rw-r--r--utils.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/utils.h b/utils.h
index c277d33..d9cf438 100644
--- a/utils.h
+++ b/utils.h
@@ -76,15 +76,6 @@ typedef int Comparison;
/***====================================================================***/
-extern Opaque uAlloc(unsigned /* size */);
-extern Opaque uCalloc(unsigned /* n */ ,
- unsigned /* size */);
-
-#define uTypedAlloc(t) ((t *)uAlloc((unsigned)sizeof(t)))
-#define uTypedCalloc(n,t) ((t *)uCalloc((unsigned)n,(unsigned)sizeof(t)))
-
-/***====================================================================***/
-
extern Boolean uSetErrorFile(const char *name);
extern void uInformation(const char *s, ...);
extern void uAction(const char *s, ...);