diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-05-27 20:30:20 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-05-27 20:30:20 -0700 |
commit | cefec39d93846c2d034be9a89f48466831eddde6 (patch) | |
tree | 8acb764330433c0f539290d804ff2c9044c11c57 /utils.h | |
parent | ab92831be0e862622105f015fe8c390715d2aae9 (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.h | 9 |
1 files changed, 0 insertions, 9 deletions
@@ -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, ...); |