From: Matthias Wachs Date: Mon, 28 Jun 2010 11:20:47 +0000 (+0000) Subject: (no commit message) X-Git-Tag: initial-import-from-subversion-38251~21167 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=62f22f399bd326fc6521204aff3b02bb32e8a401;p=oweals%2Fgnunet.git --- 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 @@ 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);