From 8c56bc6ebf71ff94694ac456447acc2dc8b0ed72 Mon Sep 17 00:00:00 2001 From: Paul Oliver Date: Wed, 15 Apr 2026 02:19:10 +0200 Subject: Fixes building bugs on certain configurations --- ui/daemon/ui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ui/daemon/ui.c') diff --git a/ui/daemon/ui.c b/ui/daemon/ui.c index f5fe668..3a4f5c2 100644 --- a/ui/daemon/ui.c +++ b/ui/daemon/ui.c @@ -56,7 +56,7 @@ void sig_handler(int signo) { } } -void step_block() { +void step_block(void) { clock_t beg = clock(); salis_step(g_step_block - (g_steps % g_step_block)); clock_t end = clock(); @@ -75,7 +75,7 @@ void step_block() { g_info("Simulator running on step %#lx @%.1f steps/s", g_steps, steps_per_sec); } -int main() { +int main(void) { g_info = info_impl; g_warn = warn_impl; -- cgit v1.2.1