aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2023-12-14 23:49:55 +0100
committerMarkus Uhlin <markus@nifty-networks.net>2023-12-14 23:49:55 +0100
commit7e739c3d7099a8972c0748b6169f0aa31d3c456d (patch)
tree16b7a5dcf657f8ccf34d1dac7239f927c0ba33e8
parent0297abfce6d2edc09b82fc92ab7d65416b7a18f3 (diff)
Sorted the includes
-rw-r--r--FICS/matchproc.c34
1 files changed, 17 insertions, 17 deletions
diff --git a/FICS/matchproc.c b/FICS/matchproc.c
index f849b27..1522e3e 100644
--- a/FICS/matchproc.c
+++ b/FICS/matchproc.c
@@ -25,30 +25,30 @@
#include "stdinclude.h"
+#include <sys/resource.h>
+
+#include <string.h>
+
+#include "board.h"
+#include "command.h"
#include "common.h"
-#include "talkproc.h"
#include "comproc.h"
-#include "command.h"
-#include "utils.h"
-#include "ficsmain.h"
#include "config.h"
-#include "playerdb.h"
-#include "network.h"
-#include "rmalloc.h"
-#include "variable.h"
+#include "eco.h"
+#include "ficsmain.h"
+#include "formula.h"
#include "gamedb.h"
#include "gameproc.h"
-#include "obsproc.h"
-#include "board.h"
-/* #include "hostinfo.h" */
+#include "lists.h"
#include "multicol.h"
+#include "network.h"
+#include "obsproc.h"
+#include "playerdb.h"
#include "ratings.h"
-#include "formula.h"
-#include "lists.h"
-#include "eco.h"
-#include <string.h>
-
-#include <sys/resource.h>
+#include "rmalloc.h"
+#include "talkproc.h"
+#include "utils.h"
+#include "variable.h"
PUBLIC int
create_new_match(int white_player, int black_player, int wt, int winc, int bt,