From 7d12f4b841a4e65e6fb5bbc8c0b3ac6f26c0bdce Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Mon, 1 Mar 2004 14:06:23 +0000 Subject: [PATCH] (deity_build_land) [!START_UNITS]: Unused, don't define. --- src/lib/commands/new.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib/commands/new.c b/src/lib/commands/new.c index 969638d0..4ee237ff 100644 --- a/src/lib/commands/new.c +++ b/src/lib/commands/new.c @@ -49,7 +49,9 @@ #include #include +#ifdef START_UNITS static int deity_build_land(int, coord, coord, natid, int); +#endif static int isok(int x, int y); static void ok(s_char *map, int x, int y); @@ -302,6 +304,7 @@ ok(s_char *map, int x, int y) ok(map, diroff[dir][0] + x, diroff[dir][1] + y); } +#ifdef START_UNITS static int deity_build_land(int type, coord x, coord y, natid own, int tlev) { @@ -382,3 +385,4 @@ deity_build_land(int type, coord x, coord y, natid own, int tlev) pr(" built in sector %s\n", xyas(x, y, player->cnum)); return 1; } +#endif /* START_UNITS */