aboutsummaryrefslogtreecommitdiff
path: root/contrib/timeout_watchdog.c
diff options
context:
space:
mode:
authorwachs <wachs@140774ce-b5e7-0310-ab8b-a85725594a96>2010-06-28 11:20:47 +0000
committerwachs <wachs@140774ce-b5e7-0310-ab8b-a85725594a96>2010-06-28 11:20:47 +0000
commitd76d4249fa3d1bf1867806c6a177fc0b8626485f (patch)
tree6f37925ba04dd8632496e9cb377e701281ffa94c /contrib/timeout_watchdog.c
parente35b1d3a3fe02df29dd2e81829dbb2ab2dc33899 (diff)
git-svn-id: https://gnunet.org/svn/gnunet@12011 140774ce-b5e7-0310-ab8b-a85725594a96
Diffstat (limited to 'contrib/timeout_watchdog.c')
-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 c8c339167f..82bf11b0fd 100644
--- a/contrib/timeout_watchdog.c
+++ b/contrib/timeout_watchdog.c
@@ -33,7 +33,7 @@
static int child_died;
static pid_t child;
-void sigchld_handler(int val)
+static void sigchld_handler(int val)
{
int status = 0;
int ret = 0;
@@ -52,7 +52,7 @@ void sigchld_handler(int val)
exit(ret);
}
-void sigint_handler(int val)
+static void sigint_handler(int val)
{
kill(0, val);
exit(1);