diff options
Diffstat (limited to 'FICS/makerank.c')
-rw-r--r-- | FICS/makerank.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/FICS/makerank.c b/FICS/makerank.c index 3e237d0..99a4029 100644 --- a/FICS/makerank.c +++ b/FICS/makerank.c @@ -10,11 +10,11 @@ #define COMPUTER_FILE DEFAULT_LISTS "/computer" #define MAX_LOGIN_NAME 21 -ENTRY **list; -ENTRY **sortme; +static ENTRY **list; +static ENTRY **sortme; -char *rnames[] = {"std", "blitz", "wild", "lightning"}; -int rtype; +static char *rnames[] = {"std", "blitz", "wild", "lightning"}; +static int rtype; static int GetPlayerInfo(char *fileName, ENTRY *e) |