From b28090a6b3250c9e99ed3c73f99194fdccec241f Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Sun, 26 Jul 2020 13:48:26 +0200 Subject: [PATCH] fairland: Move #include to the beginning where they belong Signed-off-by: Markus Armbruster --- src/util/fairland.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/util/fairland.c b/src/util/fairland.c index d7d21d72..c48f1f5f 100644 --- a/src/util/fairland.c +++ b/src/util/fairland.c @@ -97,6 +97,18 @@ #include +#include +#include +#include +#include +#include +#include "chance.h" +#include "optlist.h" +#include "prototypes.h" +#include "sect.h" +#include "version.h" +#include "xy.h" + /* define ORE 1 to add resources, define ORE 0 if you want to use another program to add the resources */ static int ORE = 1; @@ -129,18 +141,6 @@ static int quiet = 0; /* lower URAN_MIN for more uranium */ #define URAN_MIN 56 -#include -#include -#include -#include -#include -#include "chance.h" -#include "optlist.h" -#include "prototypes.h" -#include "sect.h" -#include "version.h" -#include "xy.h" - /* do not change these 4 defines */ #define LANDMIN 1 /* plate altitude for normal land */ #define HILLMIN 34 /* plate altitude for hills */