From f0c1658e413a52c4c816076c47bfa25e7a1fcea3 Mon Sep 17 00:00:00 2001 From: michael Date: Tue, 5 May 2015 18:44:54 +0000 Subject: [PATCH] - memory.c: style corrections git-svn-id: svn://svn.ircd-hybrid.org/svnroot/hopm/branches/1.0.x@5915 82007160-df01-0410-b94d-b575c5fd34c7 --- src/memory.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) 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); } -- 2.30.2