summaryrefslogtreecommitdiffstats
path: root/hunt
diff options
context:
space:
mode:
authorwiz <wiz@NetBSD.org>2003-06-11 12:04:06 +0000
committerwiz <wiz@NetBSD.org>2003-06-11 12:04:06 +0000
commit735398036b5526fa4de7c33ca9d774153618695f (patch)
treea5f5b3d9699e8d6396a321f1dfd099fa86a98b9c /hunt
parentfae2aeec35bcac050efac4d05beb9220c87e9ef6 (diff)
downloadbsdgames-darwin-735398036b5526fa4de7c33ca9d774153618695f.tar.gz
bsdgames-darwin-735398036b5526fa4de7c33ca9d774153618695f.tar.zst
bsdgames-darwin-735398036b5526fa4de7c33ca9d774153618695f.zip
Make build.
Diffstat (limited to 'hunt')
-rw-r--r--hunt/hunt/hunt.c7
-rw-r--r--hunt/huntd/hunt.h3
2 files changed, 6 insertions, 4 deletions
diff --git a/hunt/hunt/hunt.c b/hunt/hunt/hunt.c
index 4a1de158..14864732 100644
--- a/hunt/hunt/hunt.c
+++ b/hunt/hunt/hunt.c
@@ -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 */
diff --git a/hunt/huntd/hunt.h b/hunt/huntd/hunt.h
index d321515c..b5dc9870 100644
--- a/hunt/huntd/hunt.h
+++ b/hunt/huntd/hunt.h
@@ -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));