From b58d89dbcb834ef0388cf94dfbe1a3f1c2076fea Mon Sep 17 00:00:00 2001 From: nhmall Date: Tue, 12 Dec 2023 16:37:15 -0500 Subject: [PATCH] fix which file contains dealloc_monst() in extern.h --- include/extern.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/extern.h b/include/extern.h index 717a35c64..0bca90be8 100644 --- a/include/extern.h +++ b/include/extern.h @@ -1315,7 +1315,6 @@ extern void readmail(struct obj *); /* ### makemon.c ### */ -extern void dealloc_monst(struct monst *); extern boolean is_home_elemental(struct permonst *); extern struct monst *clone_mon(struct monst *, coordxy, coordxy); extern int monhp_per_lvl(struct monst *); @@ -1576,6 +1575,7 @@ extern int cmap_to_type(int); /* ### mon.c ### */ +extern void dealloc_monst(struct monst *); extern void mon_sanity_check(void); extern boolean zombie_maker(struct monst *); extern int zombie_form(struct permonst *);