summaryrefslogtreecommitdiff
path: root/utils.c
diff options
context:
space:
mode:
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;
-}
-
/***====================================================================***/