diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-10 19:59:24 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-10 19:59:24 +0100 |
commit | e885df80886349aed783e7dfa2494ddd1af24297 (patch) | |
tree | ed1523fefd051ef8a85470413eac69a7b2fc0132 /FICS | |
parent | 08c7f1e4e9860bb99ed79cbd162672a1bab4855f (diff) |
Sorted the includes
Diffstat (limited to 'FICS')
-rw-r--r-- | FICS/ficsmain.c | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/FICS/ficsmain.c b/FICS/ficsmain.c index 8e7f878..f58781e 100644 --- a/FICS/ficsmain.c +++ b/FICS/ficsmain.c @@ -24,21 +24,22 @@ #include "stdinclude.h" +#include "board.h" +#include "command.h" #include "common.h" -#include "ficsmain.h" +#include "comproc.h" #include "config.h" +#ifndef IGNORE_ECO +#include "eco.h" +#endif +#include "ficsmain.h" #include "network.h" -#include "command.h" #include "playerdb.h" #include "ratings.h" -#include "utils.h" -#include "board.h" -#include "talkproc.h" -#include "comproc.h" #include "shutdown.h" -#ifndef IGNORE_ECO -#include "eco.h" -#endif +#include "talkproc.h" +#include "utils.h" + #include <sys/param.h> /* Arguments */ |