diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-20 02:09:18 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-20 02:09:18 +0100 |
commit | 0f48fbcf58394305e07a2c1aab8d420fe54b7b11 (patch) | |
tree | ba1b63e8871444e6186126ee93ad7d9da1ad7828 | |
parent | bbbfc9f3b76982931b9b96bc1f514ed38faa1e00 (diff) |
Moved includes
-rw-r--r-- | FICS/ficsmain.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/FICS/ficsmain.c b/FICS/ficsmain.c index 1ff9c6e..ac02d64 100644 --- a/FICS/ficsmain.c +++ b/FICS/ficsmain.c @@ -25,10 +25,12 @@ */ #include "stdinclude.h" +#include "common.h" + +#include <sys/param.h> #include "board.h" #include "command.h" -#include "common.h" #include "comproc.h" #include "config.h" #ifndef IGNORE_ECO @@ -42,8 +44,6 @@ #include "talkproc.h" #include "utils.h" -#include <sys/param.h> - /* Arguments */ PUBLIC int port; PUBLIC int withConsole; |