(no commit message)
authorMatthias Wachs <wachs@net.in.tum.de>
Mon, 28 Jun 2010 11:20:47 +0000 (11:20 +0000)
committerMatthias Wachs <wachs@net.in.tum.de>
Mon, 28 Jun 2010 11:20:47 +0000 (11:20 +0000)
contrib/timeout_watchdog.c

index c8c339167f235fddb1f0e20e7ecc723aeba75f3a..82bf11b0fd2e940468966890b47bb5415c9743fa 100644 (file)
@@ -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);