remove some dead declarations

This commit is contained in:
Enno Rehling 2016-03-13 19:24:41 +01:00
parent e75843e5c1
commit 0464fb629a
2 changed files with 1 additions and 3 deletions

View File

@ -45,9 +45,6 @@ extern "C" {
fumble_f fumble;
} spell;
int use_item_power(struct region *r, struct unit *u);
int use_item_regeneration(struct region *r, struct unit *u);
void showspells(struct region *r, struct unit *u);
int sp_antimagiczone(struct castorder *co);
struct spell * create_spell(const char * name, unsigned int id);

View File

@ -279,6 +279,7 @@ void test_demon_skillchanges(CuTest *tc) {
CuAssertPtrNotNull(tc, u);
set_level(u, SK_CROSSBOW, 1);
demon_skillchange(u);
// TODO: sensing here
test_cleanup();
}