From c2879ac1a8e787cd08a493b516074caed179f058 Mon Sep 17 00:00:00 2001 From: michael Date: Sun, 11 Jan 2015 12:58:17 +0000 Subject: [PATCH] - 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 --- src/memory.c | 5 +++-- src/memory.h | 2 -- 2 files changed, 3 insertions(+), 4 deletions(-) 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); -- 2.30.2