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/hunt/otto.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/hunt/otto.c')
| -rw-r--r-- | hunt/hunt/otto.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hunt/hunt/otto.c b/hunt/hunt/otto.c index 7f7b5dc8..47dd0383 100644 --- a/hunt/hunt/otto.c +++ b/hunt/hunt/otto.c @@ -1,4 +1,4 @@ -/* $NetBSD: otto.c,v 1.13 2009/07/04 05:01:16 dholland Exp $ */ +/* $NetBSD: otto.c,v 1.14 2009/07/04 06:38:34 dholland Exp $ */ #ifdef OTTO /* * Copyright (c) 1983-2003, Regents of the University of California. @@ -45,7 +45,7 @@ #include <sys/cdefs.h> #ifndef lint -__RCSID("$NetBSD: otto.c,v 1.13 2009/07/04 05:01:16 dholland Exp $"); +__RCSID("$NetBSD: otto.c,v 1.14 2009/07/04 06:38:34 dholland Exp $"); #endif /* not lint */ #include <sys/time.h> @@ -148,13 +148,13 @@ STATIC void face_and_move_direction(int, int); STATIC int go_for_ammo(char); STATIC void ottolook(int, struct item *); STATIC void look_around(void); -STATIC SIGNAL_TYPE nothing(int); +STATIC void nothing(int); STATIC int stop_look(struct item *, char, int, int); STATIC void wander(void); extern int Otto_count; -STATIC SIGNAL_TYPE +STATIC void nothing(int dummy __unused) { } |
