summaryrefslogtreecommitdiff
path: root/utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'utils.c')
-rw-r--r--utils.c19
1 files changed, 1 insertions, 18 deletions
diff --git a/utils.c b/utils.c
index 240ac1b..b813863 100644
--- a/utils.c
+++ b/utils.c
@@ -36,23 +36,6 @@ unsigned int debugFlags;
/***====================================================================***/
-Opaque
-uAlloc(unsigned size)
-{
- return ((Opaque) malloc(size));
-}
-
-/***====================================================================***/
-
-Opaque
-uCalloc(unsigned n, unsigned size)
-{
- return ((Opaque) calloc(n, size));
-}
-
-
-/***====================================================================***/
-
static FILE *errorFile = NULL;
Boolean
@@ -172,7 +155,7 @@ uStringDup(const char *str)
if (str == NULL)
return NULL;
- rtrn = (char *) uAlloc(strlen(str) + 1);
+ rtrn = (char *) malloc(strlen(str) + 1);
strcpy(rtrn, str);
return rtrn;
}