summaryrefslogtreecommitdiffhomepage
path: root/dbutil.c
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2012-02-21 23:00:30 +0800
committerMatt Johnston <matt@ucc.asn.au>2012-02-21 23:00:30 +0800
commit6c4390c8486cf6927274133a771d6d3de75efd50 (patch)
treef71392e68428b50b91d3c94b86188c88bd83e417 /dbutil.c
parenta3188b44f005c883c0136079e910aac095ca3460 (diff)
parentaec23e5f791b78ed195358057f07f3050ab5bf94 (diff)
- Merge
Diffstat (limited to 'dbutil.c')
-rw-r--r--dbutil.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/dbutil.c b/dbutil.c
index b9d7f47..9a6d846 100644
--- a/dbutil.c
+++ b/dbutil.c
@@ -800,12 +800,6 @@ void * m_strdup(const char * str) {
return ret;
}
-void __m_free(void* ptr) {
- if (ptr != NULL) {
- free(ptr);
- }
-}
-
void * m_realloc(void* ptr, size_t size) {
void *ret;