From 9b9357ab7a1de79a741ee4f99a6aff745b79f77a Mon Sep 17 00:00:00 2001
From: Markus Uhlin <markus@nifty-networks.net>
Date: Sat, 23 Dec 2023 17:43:34 +0100
Subject: Reformatted wild_init()

---
 FICS/board.c | 11 ++++++-----
 1 file 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);
 }
-- 
cgit v1.2.3