diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-17 13:16:49 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-17 13:16:49 +0100 |
commit | 1ccb99eec829089a35d399a0a91280afaa443f22 (patch) | |
tree | 09f923ae64681e55c151e92ec42558c0f6edb6ea /FICS | |
parent | 2c0c673922bb2eadae7fbf2d1b08522920e129ea (diff) |
Fixed the includes
Diffstat (limited to 'FICS')
-rw-r--r-- | FICS/board.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FICS/board.c b/FICS/board.c index efffcfb..0906afb 100644 --- a/FICS/board.c +++ b/FICS/board.c @@ -23,11 +23,11 @@ */ #include "stdinclude.h" - #include "common.h" + #include "board.h" -#include "playerdb.h" #include "gamedb.h" +#include "playerdb.h" #include "utils.h" extern int style1(); |