summaryrefslogtreecommitdiff
path: root/utils.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2014-05-26 16:15:00 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2014-05-26 16:15:00 -0700
commitab92831be0e862622105f015fe8c390715d2aae9 (patch)
treea8907704c9924753c5f0948d4a54e04c700a54be /utils.c
parent4ae1b3d5f5330a8f7bd8880860a204000081095c (diff)
Replace sole call to uFree() with direct call to free()
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'utils.c')
-rw-r--r--utils.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/utils.c b/utils.c
index 70887c7..240ac1b 100644
--- a/utils.c
+++ b/utils.c
@@ -50,16 +50,6 @@ uCalloc(unsigned n, unsigned size)
return ((Opaque) calloc(n, size));
}
-/***====================================================================***/
-
-void
-uFree(Opaque ptr)
-{
- if (ptr != (Opaque) NULL)
- free((char *) ptr);
- return;
-}
-
/***====================================================================***/