From: Pasi Kallinen Date: Sat, 23 Jan 2021 13:19:34 +0000 (+0200) Subject: Remove unused function X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a3c8dead915328b165a22fba83a04c7872e95ff4;p=nethack Remove unused function --- diff --git a/src/dungeon.c b/src/dungeon.c index 7e6da3244..b5b02a16f 100644 --- a/src/dungeon.c +++ b/src/dungeon.c @@ -1582,16 +1582,6 @@ boolean up; return tmp; } -stairway * -stairway_find_ladder() -{ - stairway *tmp = g.stairs; - - while (tmp && !tmp->isladder) - tmp = tmp->next; - return tmp; -} - stairway * stairway_find_type_dir(isladder, up) boolean isladder, up;