summaryrefslogtreecommitdiff
path: root/src/common/console.c
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2018-11-11 23:26:19 +0100
committerHaru <haru@dotalux.com>2018-11-13 14:42:46 +0100
commitec2f7f8c40bca8ecef4a8269e87b12d0885d10bb (patch)
treebf840ba8ba3343700246e0b8ccce66c1ce3fb18f /src/common/console.c
parentc9894956cbd029b31b3ad833804a4e59018eb015 (diff)
downloadhercules-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/console.c')
-rw-r--r--src/common/console.c21
1 files changed, 9 insertions, 12 deletions
diff --git a/src/common/console.c b/src/common/console.c
index 5923775b7..a990d86b3 100644
--- a/src/common/console.c
+++ b/src/common/console.c
@@ -23,24 +23,21 @@
#include "config/core.h" // CONSOLE_INPUT, MAX_CONSOLE_INPUT
#include "console.h"
+#include "common/atomic.h"
#include "common/cbasetypes.h"
#include "common/core.h"
+#include "common/ers.h"
+#include "common/memmgr.h"
#include "common/mmo.h"
+#include "common/mutex.h"
#include "common/nullpo.h"
#include "common/showmsg.h"
+#include "common/spinlock.h"
+#include "common/sql.h"
+#include "common/strlib.h"
#include "common/sysinfo.h"
-
-#ifndef MINICORE
-# include "common/atomic.h"
-# include "common/ers.h"
-# include "common/memmgr.h"
-# include "common/mutex.h"
-# include "common/spinlock.h"
-# include "common/sql.h"
-# include "common/strlib.h"
-# include "common/thread.h"
-# include "common/timer.h"
-#endif
+#include "common/thread.h"
+#include "common/timer.h"
#include <stdio.h>
#include <stdlib.h>