From 75af06f5f8ffc41fabd100253aad222cb4ab8662 Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Sat, 10 Dec 2022 13:44:17 -0800 Subject: Replace uCalloc() and uTypedCalloc() with direct calloc() calls All these wrappers did was mess with types. Signed-off-by: Alan Coopersmith --- utils.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'utils.c') diff --git a/utils.c b/utils.c index 2d605dd..603e8b7 100644 --- a/utils.c +++ b/utils.c @@ -31,14 +31,6 @@ #include -/***====================================================================***/ - -Opaque -uCalloc(unsigned n, unsigned size) -{ - return ((Opaque) calloc(n, size)); -} - /***====================================================================***/ Opaque -- cgit v1.2.3