diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-13 00:16:00 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-13 00:16:00 +0100 |
commit | 29209c2251b16f90e71af31b710b90c2250cc2e0 (patch) | |
tree | 91b365bbea222a7f0490ffd76e3ebc328043b6e3 /FICS | |
parent | 9acc241da94ec4a0e13b2209c5b777f015a78509 (diff) |
Sorted the includes
Diffstat (limited to 'FICS')
-rw-r--r-- | FICS/playerdb.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/FICS/playerdb.c b/FICS/playerdb.c index 05443bd..72a90dd 100644 --- a/FICS/playerdb.c +++ b/FICS/playerdb.c @@ -23,19 +23,20 @@ */ #include "stdinclude.h" -#include "common.h" + #include "command.h" +#include "common.h" #include "comproc.h" -#include "playerdb.h" -#include "rmalloc.h" -#include "utils.h" -#include "network.h" -#include "ficsmain.h" #include "config.h" -#include "talkproc.h" +#include "ficsmain.h" #include "gamedb.h" #include "lists.h" +#include "network.h" +#include "playerdb.h" #include "ratings.h" +#include "rmalloc.h" +#include "talkproc.h" +#include "utils.h" PUBLIC player parray[PARRAY_SIZE]; PUBLIC int p_num = 0; |