diff options
| author | Paul Oliver <contact@pauloliver.dev> | 2026-04-15 02:19:10 +0200 |
|---|---|---|
| committer | Paul Oliver <contact@pauloliver.dev> | 2026-04-15 02:19:10 +0200 |
| commit | 8c56bc6ebf71ff94694ac456447acc2dc8b0ed72 (patch) | |
| tree | 045fa0d267d935b0ff4a1845063253df1d62213e /ui/daemon/ui.c | |
| parent | c46d17b235d57dcbb2bb5455822420dc50ffac75 (diff) | |
Fixes building bugs on certain configurations
Diffstat (limited to 'ui/daemon/ui.c')
| -rw-r--r-- | ui/daemon/ui.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |
