summaryrefslogtreecommitdiff
path: root/src/xmalloc.c
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@lorry>2014-04-17 19:21:35 +0000
committerLorry Tar Creator <lorry-tar-importer@lorry>2014-04-17 19:21:35 +0000
commitfcef386e7515078851ab94c8b3c2686b09cacd96 (patch)
tree9c746953362692b25805582e403b32ec433c4f96 /src/xmalloc.c
parent9ff9d2902caf8a85c5019c11214d73e67053ba69 (diff)
downloadliboauth-master.tar.gz
Diffstat (limited to 'src/xmalloc.c')
-rw-r--r--src/xmalloc.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/xmalloc.c b/src/xmalloc.c
index f831e13..bd2136f 100644
--- a/src/xmalloc.c
+++ b/src/xmalloc.c
@@ -57,4 +57,7 @@ char *xstrdup (const char *s) {
return (char*) ptr;
}
+void xfree(void *ptr) {
+ return free(ptr);
+}
// vi: sts=2 sw=2 ts=2