diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-19 22:47:54 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-19 22:47:54 +0100 |
commit | 2c8a574ad6a887a4b9a95f1a094790a1c4007a8e (patch) | |
tree | 308e103fbbffbbf19c506def1d86a48a6d41b50a /FICS/comproc.c | |
parent | 7fd00b7c5ea7471645f13b159ed919e15c7f3492 (diff) |
Made vars public
Diffstat (limited to 'FICS/comproc.c')
-rw-r--r-- | FICS/comproc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/FICS/comproc.c b/FICS/comproc.c index bfe362f..effd42f 100644 --- a/FICS/comproc.c +++ b/FICS/comproc.c @@ -54,11 +54,11 @@ #include "utils.h" #include "variable.h" -const int none = 0; -const int blitz_rat = 1; -const int std_rat = 2; -const int wild_rat = 3; -const int light_rat = 4; +PUBLIC const int none = 0; +PUBLIC const int blitz_rat = 1; +PUBLIC const int std_rat = 2; +PUBLIC const int wild_rat = 3; +PUBLIC const int light_rat = 4; PUBLIC int num_news = -1; |