From 51e967ee4245ed1d49665492c8f0db714e888380 Mon Sep 17 00:00:00 2001 From: PatR Date: Fri, 11 Dec 2020 17:01:43 -0800 Subject: [PATCH] warning suppression - unused static routine --- src/muse.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/muse.c b/src/muse.c index 94401d056..e30bee61e 100644 --- a/src/muse.c +++ b/src/muse.c @@ -1,4 +1,4 @@ -/* NetHack 3.7 muse.c $NHDT-Date: 1605726852 2020/11/18 19:14:12 $ $NHDT-Branch: NetHack-3.7 $:$NHDT-Revision: 1.134 $ */ +/* NetHack 3.7 muse.c $NHDT-Date: 1607734843 2020/12/12 01:00:43 $ $NHDT-Branch: NetHack-3.7 $:$NHDT-Revision: 1.136 $ */ /* Copyright (C) 1990 by Ken Arromdee */ /* NetHack may be freely redistributed. See license for details. */ @@ -30,7 +30,9 @@ static struct permonst *FDECL(muse_newcham_mon, (struct monst *)); static int FDECL(mloot_container, (struct monst *mon, struct obj *, BOOLEAN_P)); static void FDECL(you_aggravate, (struct monst *)); +#if 0 static boolean FDECL(necrophiliac, (struct obj *, BOOLEAN_P)); +#endif static void FDECL(mon_consume_unstone, (struct monst *, struct obj *, BOOLEAN_P, BOOLEAN_P)); static boolean FDECL(cures_stoning, (struct monst *, struct obj *, @@ -2321,6 +2323,7 @@ struct monst *mtmp; return 0; } +#if 0 /* check whether hero is carrying a corpse or contained petrifier corpse */ static boolean necrophiliac(objlist, any_corpse) @@ -2337,6 +2340,7 @@ boolean any_corpse; } return FALSE; } +#endif boolean searches_for_item(mon, obj)