From: michael Date: Tue, 5 May 2015 18:45:20 +0000 (+0000) Subject: - memory.c: style corrections X-Git-Tag: 1.1.0beta1~104 X-Git-Url: http://git.serene-ircd.net/?a=commitdiff_plain;h=8a3f5589ca85a43072b7354d2424053cfb5e7d16;p=hopm.git - memory.c: style corrections git-svn-id: svn://svn.ircd-hybrid.org/svnroot/hopm/trunk@5916 82007160-df01-0410-b94d-b575c5fd34c7 --- diff --git a/src/memory.c b/src/memory.c index d095e86..50bb695 100644 --- a/src/memory.c +++ b/src/memory.c @@ -36,8 +36,8 @@ * Return: * Pointer to allocated memory */ - -void *xcalloc(size_t bytes) +void * +xcalloc(size_t bytes) { void *ret = calloc(1, bytes); assert(ret); @@ -45,8 +45,6 @@ void *xcalloc(size_t bytes) return ret; } - - /* xfree * * Free memory allocated with xcalloc @@ -57,8 +55,8 @@ void *xcalloc(size_t bytes) * Return: * None */ - -void xfree(void *ptr) +void +xfree(void *ptr) { free(ptr); }