diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-23 23:55:24 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-23 23:55:24 +0100 |
commit | c4ee6979020e95f4c9dc95af38e64c78fe3ca097 (patch) | |
tree | b3f69d90b4c8e0de0263eda688e31c2dc80106f9 /FICS/board.c | |
parent | 4e1418ae239647d88c39c8eb52c4e949da82070a (diff) |
Moved variable definition
Diffstat (limited to 'FICS/board.c')
-rw-r--r-- | FICS/board.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FICS/board.c b/FICS/board.c index 20653a3..66cf527 100644 --- a/FICS/board.c +++ b/FICS/board.c @@ -75,14 +75,14 @@ PUBLIC int (*styleFuncs[MAX_STYLES])() = { style13 }; +PRIVATE char bstring[MAX_BOARD_STRING_LEGTH]; + PRIVATE const int mach_type = ((1 << 7) | (1 << 8) | (1 << 9) | (1 << 10) | (1 << 11)); -PRIVATE char bstring[MAX_BOARD_STRING_LEGTH]; - /* * Globals used for each board */ |