aboutsummaryrefslogtreecommitdiffstats
path: root/FICS/command.c
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2023-12-17 12:29:02 +0100
committerMarkus Uhlin <markus@nifty-networks.net>2023-12-17 12:29:02 +0100
commite30ee4b2b353fc4b0e7caed7047d1ed992664014 (patch)
tree7795a63cb5b971938f6359c7a1c1aee6f09a387c /FICS/command.c
parent4e0d849ddb27a4c298225d794d2764c120755900 (diff)
Fixed the includes
Diffstat (limited to 'FICS/command.c')
-rw-r--r--FICS/command.c23
1 files changed, 10 insertions, 13 deletions
diff --git a/FICS/command.c b/FICS/command.c
index 3393fb9..f736316 100644
--- a/FICS/command.c
+++ b/FICS/command.c
@@ -24,27 +24,24 @@
#include "stdinclude.h"
-#include "common.h"
-#include "rmalloc.h"
+#include <sys/param.h>
+
#include "command.h"
#include "command_list.h"
-#include "movecheck.h"
-#include "ficsmain.h"
+#include "common.h"
#include "config.h"
-#include "utils.h"
-#include "playerdb.h"
+#include "ficsmain.h"
#include "gamedb.h"
#include "gameproc.h"
+#include "movecheck.h"
+#include "network.h"
#include "obsproc.h"
+#include "playerdb.h"
#include "ratings.h"
-#include "vers.h"
-#include "network.h"
+#include "rmalloc.h"
#include "shutdown.h"
-#include <sys/param.h>
-#ifdef TIMESEAL
-#include "timeseal.h"
-#endif
-/*#include "hostinfo.h" */
+#include "utils.h"
+#include "vers.h"
PUBLIC char *mess_dir = DEFAULT_MESS;
PUBLIC char *index_dir = DEFAULT_INDEX;