diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-13 23:54:12 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-13 23:54:12 +0100 |
commit | 033a52797fad906fcdf2583041077299500dc626 (patch) | |
tree | 4ee29ba5a7c18f5453ad70c61c0a385550fc97e7 /FICS/makerank.c | |
parent | 5d8ef77d6fd2c6f51bd4d78d9ae5d040ce2e9438 (diff) |
Made vars static
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) |