]> git.cameronkatri.com Git - bsdgames-darwin.git/commitdiff
Make build.
authorwiz <wiz@NetBSD.org>
Wed, 11 Jun 2003 12:04:06 +0000 (12:04 +0000)
committerwiz <wiz@NetBSD.org>
Wed, 11 Jun 2003 12:04:06 +0000 (12:04 +0000)
hunt/hunt/hunt.c
hunt/huntd/hunt.h

index 4a1de1587f46eeb73b7284b540c17787d66e8879..1486473294647fc0a8b698c895e41d45fc41671a 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: hunt.c,v 1.19 2003/06/11 12:00:21 wiz Exp $    */
+/*     $NetBSD: hunt.c,v 1.20 2003/06/11 12:04:06 wiz Exp $    */
 /*
  * Copyright (c) 1983-2003, Regents of the University of California.
  * All rights reserved.
@@ -32,7 +32,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: hunt.c,v 1.19 2003/06/11 12:00:21 wiz Exp $");
+__RCSID("$NetBSD: hunt.c,v 1.20 2003/06/11 12:04:06 wiz Exp $");
 #endif /* not lint */
 
 # include      <sys/param.h>
@@ -764,7 +764,8 @@ sigterm(dummy)
  *     Handle a usr1 signal
  */
 SIGNAL_TYPE
-sigusr1()
+sigusr1(dummy)
+       int dummy;
 {
        leavex(1, "Unable to start driver.  Try again.");
        /* NOTREACHED */
index d321515c96e39d76a2ff53496af43e7bc9081df9..b5dc98702fdc2ff4152ee4235dadca019bdd6fd7 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: hunt.h,v 1.8 2003/06/11 12:00:22 wiz Exp $     */
+/*     $NetBSD: hunt.h,v 1.9 2003/06/11 12:04:06 wiz Exp $     */
 
 /*
  * Copyright (c) 1983-2003, Regents of the University of California.
@@ -477,4 +477,5 @@ SIGNAL_TYPE intr __P((int));
 SIGNAL_TYPE    sigalrm __P((int));
 SIGNAL_TYPE    sigemt __P((int));
 SIGNAL_TYPE    sigterm __P((int));
+SIGNAL_TYPE    sigusr1 __P((int));
 SIGNAL_TYPE    tstp __P((int));