From: michael Date: Sun, 11 Jan 2015 12:58:17 +0000 (+0000) Subject: - memory.c, memory.h: fixed header inclusions X-Git-Tag: 1.0.2~13 X-Git-Url: http://git.serene-ircd.net/?a=commitdiff_plain;h=c2879ac1a8e787cd08a493b516074caed179f058;p=hopm.git - memory.c, memory.h: fixed header inclusions git-svn-id: svn://svn.ircd-hybrid.org/svnroot/hopm/branches/1.0.x@5349 82007160-df01-0410-b94d-b575c5fd34c7 --- diff --git a/src/memory.c b/src/memory.c index f1c34fe..377dc72 100644 --- a/src/memory.c +++ b/src/memory.c @@ -21,10 +21,11 @@ * */ -#include +#include #include #include -#include "malloc.h" + +#include "memory.h" /* xcalloc diff --git a/src/memory.h b/src/memory.h index c777064..bf3db20 100644 --- a/src/memory.h +++ b/src/memory.h @@ -1,8 +1,6 @@ #ifndef MALLOC_H #define MALLOC_H -#include - #define MyFree(X) _MyFree((void **) &X) extern void *xcalloc(size_t bytes);