aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--contrib/timeout_watchdog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/timeout_watchdog.c b/contrib/timeout_watchdog.c
index c8c339167..82bf11b0f 100644
--- a/contrib/timeout_watchdog.c
+++ b/contrib/timeout_watchdog.c
@@ -33,7 +33,7 @@
33static int child_died; 33static int child_died;
34static pid_t child; 34static pid_t child;
35 35
36void sigchld_handler(int val) 36static void sigchld_handler(int val)
37{ 37{
38 int status = 0; 38 int status = 0;
39 int ret = 0; 39 int ret = 0;
@@ -52,7 +52,7 @@ void sigchld_handler(int val)
52 exit(ret); 52 exit(ret);
53} 53}
54 54
55void sigint_handler(int val) 55static void sigint_handler(int val)
56{ 56{
57 kill(0, val); 57 kill(0, val);
58 exit(1); 58 exit(1);