diff options
author | Lorry Tar Creator <lorry-tar-importer@lorry> | 2014-04-17 19:21:35 +0000 |
---|---|---|
committer | Lorry Tar Creator <lorry-tar-importer@lorry> | 2014-04-17 19:21:35 +0000 |
commit | fcef386e7515078851ab94c8b3c2686b09cacd96 (patch) | |
tree | 9c746953362692b25805582e403b32ec433c4f96 /src/xmalloc.c | |
parent | 9ff9d2902caf8a85c5019c11214d73e67053ba69 (diff) | |
download | liboauth-master.tar.gz |
liboauth-1.0.3HEADliboauth-1.0.3master
Diffstat (limited to 'src/xmalloc.c')
-rw-r--r-- | src/xmalloc.c | 3 |
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 |