diff options
| author | dholland <dholland@NetBSD.org> | 2009-07-04 06:38:34 +0000 |
|---|---|---|
| committer | dholland <dholland@NetBSD.org> | 2009-07-04 06:38:34 +0000 |
| commit | 90a7b8b0ddece21340e896e8cec8e3f8ef4383d3 (patch) | |
| tree | 9b1dd2f878fe0982c44255705ca173bfaddee1e9 /hunt/huntd/faketalk.c | |
| parent | 1f91c41d4dd9a2321320f1856b01f542e481d8a3 (diff) | |
| download | bsdgames-darwin-90a7b8b0ddece21340e896e8cec8e3f8ef4383d3.tar.gz 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/faketalk.c')
| -rw-r--r-- | hunt/huntd/faketalk.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hunt/huntd/faketalk.c b/hunt/huntd/faketalk.c index df948445..6a8a531e 100644 --- a/hunt/huntd/faketalk.c +++ b/hunt/huntd/faketalk.c @@ -1,4 +1,4 @@ -/* $NetBSD: faketalk.c,v 1.15 2009/07/04 04:29:54 dholland Exp $ */ +/* $NetBSD: faketalk.c,v 1.16 2009/07/04 06:38:35 dholland 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: faketalk.c,v 1.15 2009/07/04 04:29:54 dholland Exp $"); +__RCSID("$NetBSD: faketalk.c,v 1.16 2009/07/04 06:38:35 dholland Exp $"); #endif /* not lint */ #include "bsd.h" @@ -67,13 +67,13 @@ extern char *First_arg, *Last_arg; extern char **environ; static void do_announce(char *); -SIGNAL_TYPE exorcise(int); +void exorcise(int); /* * exorcise - disspell zombies */ -SIGNAL_TYPE +void exorcise(int dummy __unused) { (void) wait(0); |
