summaryrefslogtreecommitdiff
path: root/src/expiry.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/expiry.c')
-rw-r--r--src/expiry.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/expiry.c b/src/expiry.c
index 112c08c2..dc20b90e 100644
--- a/src/expiry.c
+++ b/src/expiry.c
@@ -27,14 +27,14 @@ const char *Prog;
static bool cflg = false;
/* local function prototypes */
-static RETSIGTYPE catch_signals (unused int sig);
+static void catch_signals (unused int sig);
static /*@noreturn@*/void usage (int status);
static void process_flags (int argc, char **argv);
/*
* catch_signals - signal catcher
*/
-static RETSIGTYPE catch_signals (unused int sig)
+static void catch_signals (unused int sig)
{
_exit (10);
}