<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">Fix signal handler prototypes.

--- anacron-2.3/main.c	2025-07-05 02:46:46.417554877 +0100
+++ anacron-2.3/main.c	2025-07-05 02:46:40.089842146 +0100
@@ -214,19 +214,19 @@
 }
 
 void
-handle_sigalrm()
+handle_sigalrm(int dummy)
 {
     got_sigalrm = 1;
 }
 
 void
-handle_sigchld()
+handle_sigchld(int dummy)
 {
     got_sigchld = 1;
 }
 
 void
-handle_sigusr1()
+handle_sigusr1(int dummy)
 {
     got_sigusr1 = 1;
 }
</pre></body></html>