summaryrefslogtreecommitdiff
path: root/src/common/console.c
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2018-11-13 16:13:28 +0100
committerGitHub <noreply@github.com>2018-11-13 16:13:28 +0100
commit4991ce6ef03ce95f29c138421c011574e67d75e3 (patch)
treec75948f6829a9bb5686d57eb7eacf776aa3da0c6 /src/common/console.c
parentcccaf912f3d3e7fb9a260c9baf2b91683b1ba0de (diff)
parentec2f7f8c40bca8ecef4a8269e87b12d0885d10bb (diff)
downloadhercules-4991ce6ef03ce95f29c138421c011574e67d75e3.tar.gz
hercules-4991ce6ef03ce95f29c138421c011574e67d75e3.tar.bz2
hercules-4991ce6ef03ce95f29c138421c011574e67d75e3.tar.xz
hercules-4991ce6ef03ce95f29c138421c011574e67d75e3.zip
Merge pull request #2319 from MishimaHaruna/remove-minicore
Remove minicore
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>