diff options
-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; |