summaryrefslogtreecommitdiffstats
path: root/hunt/huntd/hunt.h
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2009-07-04 06:38:34 +0000
committerdholland <dholland@NetBSD.org>2009-07-04 06:38:34 +0000
commit90a7b8b0ddece21340e896e8cec8e3f8ef4383d3 (patch)
tree9b1dd2f878fe0982c44255705ca173bfaddee1e9 /hunt/huntd/hunt.h
parent1f91c41d4dd9a2321320f1856b01f542e481d8a3 (diff)
downloadbsdgames-darwin-90a7b8b0ddece21340e896e8cec8e3f8ef4383d3.tar.gz
bsdgames-darwin-90a7b8b0ddece21340e896e8cec8e3f8ef4383d3.tar.zst
bsdgames-darwin-90a7b8b0ddece21340e896e8cec8e3f8ef4383d3.zip
Remove config for the return type of signal handlers, which is also a
long-dead issue.
Diffstat (limited to 'hunt/huntd/hunt.h')
-rw-r--r--hunt/huntd/hunt.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/hunt/huntd/hunt.h b/hunt/huntd/hunt.h
index 2c46ea8d..1b98b276 100644
--- a/hunt/huntd/hunt.h
+++ b/hunt/huntd/hunt.h
@@ -1,4 +1,4 @@
-/* $NetBSD: hunt.h,v 1.15 2009/07/04 04:29:54 dholland Exp $ */
+/* $NetBSD: hunt.h,v 1.16 2009/07/04 06:38:35 dholland Exp $ */
/*
* Copyright (c) 1983-2003, Regents of the University of California.
@@ -477,10 +477,10 @@ void start_driver(void);
void stmonitor(PLAYER *);
void stplayer(PLAYER *, int);
char translate(char);
-SIGNAL_TYPE cleanup(int) __dead;
-SIGNAL_TYPE intr(int);
-SIGNAL_TYPE sigalrm(int);
-SIGNAL_TYPE sigemt(int) __dead;
-SIGNAL_TYPE sigterm(int) __dead;
-SIGNAL_TYPE sigusr1(int) __dead;
-SIGNAL_TYPE tstp(int);
+void cleanup(int) __dead;
+void intr(int);
+void sigalrm(int);
+void sigemt(int) __dead;
+void sigterm(int) __dead;
+void sigusr1(int) __dead;
+void tstp(int);