diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-16 16:34:47 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-16 16:34:47 +0100 |
commit | 27389b683a200493f54a1c01eb89a2522acc779b (patch) | |
tree | f516f3add3dee3c5cf0fb036d5a49a173da345d7 | |
parent | 50830668a6a16920ddfc5750c836fafc58603a8d (diff) |
Fixed the includes
-rw-r--r-- | FICS/eco.c | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -1,13 +1,14 @@ #include "stdinclude.h" + #include "board.h" -#include "gamedb.h" #include "command.h" -#include "playerdb.h" +#include "common.h" +#include "config.h" +#include "gamedb.h" #include "gameproc.h" #include "obsproc.h" +#include "playerdb.h" #include "utils.h" -#include "common.h" -#include "config.h" PUBLIC char *book_dir = DEFAULT_BOOK; |