diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-23 17:43:34 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-23 17:43:34 +0100 |
commit | 9b9357ab7a1de79a741ee4f99a6aff745b79f77a (patch) | |
tree | 2aec69bb4430e474993aba01548ae3c6a64f4f02 /FICS/board.c | |
parent | b8c2e8ee3c180a81c9e57987c0936528eafd380d (diff) |
Reformatted wild_init()
Diffstat (limited to 'FICS/board.c')
-rw-r--r-- | FICS/board.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/FICS/board.c b/FICS/board.c index fb51bad..5be262d 100644 --- a/FICS/board.c +++ b/FICS/board.c @@ -1062,10 +1062,11 @@ PUBLIC void wild_update(int style) } } -PUBLIC void wild_init() +PUBLIC void +wild_init(void) { - wild_update(1); - wild_update(2); - wild_update(3); - wild_update(4); + wild_update(1); + wild_update(2); + wild_update(3); + wild_update(4); } |