diff options
author | Haru <haru@dotalux.com> | 2018-11-11 23:26:19 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2018-11-13 14:42:46 +0100 |
commit | ec2f7f8c40bca8ecef4a8269e87b12d0885d10bb (patch) | |
tree | bf840ba8ba3343700246e0b8ccce66c1ce3fb18f /src/common/memmgr.h | |
parent | c9894956cbd029b31b3ad833804a4e59018eb015 (diff) | |
download | hercules-ec2f7f8c40bca8ecef4a8269e87b12d0885d10bb.tar.gz hercules-ec2f7f8c40bca8ecef4a8269e87b12d0885d10bb.tar.bz2 hercules-ec2f7f8c40bca8ecef4a8269e87b12d0885d10bb.tar.xz hercules-ec2f7f8c40bca8ecef4a8269e87b12d0885d10bb.zip |
Remove the unused minicore libraries and ifdefs
Minicore was previously used by the tools in the src/tool directory, and
is currently unused.
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/common/memmgr.h')
-rw-r--r-- | src/common/memmgr.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/common/memmgr.h b/src/common/memmgr.h index 90c35f244..c7147cc5e 100644 --- a/src/common/memmgr.h +++ b/src/common/memmgr.h @@ -42,11 +42,6 @@ // Enable memory manager logging by default #define LOG_MEMMGR -// no logging for minicore -#if defined(MINICORE) && defined(LOG_MEMMGR) - #undef LOG_MEMMGR -#endif - # define aMalloc(n) (iMalloc->malloc((n),ALC_MARK)) # define aCalloc(m,n) (iMalloc->calloc((m),(n),ALC_MARK)) # define aRealloc(p,n) (iMalloc->realloc((p),(n),ALC_MARK)) |