diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-05-26 16:15:00 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-05-26 16:15:00 -0700 |
commit | ab92831be0e862622105f015fe8c390715d2aae9 (patch) | |
tree | a8907704c9924753c5f0948d4a54e04c700a54be /utils.h | |
parent | 4ae1b3d5f5330a8f7bd8880860a204000081095c (diff) |
Replace sole call to uFree() with direct call to free()
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'utils.h')
-rw-r--r-- | utils.h | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -79,7 +79,6 @@ typedef int Comparison; extern Opaque uAlloc(unsigned /* size */); extern Opaque uCalloc(unsigned /* n */ , unsigned /* size */); -extern void uFree(Opaque /* ptr */); #define uTypedAlloc(t) ((t *)uAlloc((unsigned)sizeof(t))) #define uTypedCalloc(n,t) ((t *)uCalloc((unsigned)n,(unsigned)sizeof(t))) |