summaryrefslogtreecommitdiffstats
path: root/robots/make_level.c
diff options
context:
space:
mode:
Diffstat (limited to 'robots/make_level.c')
-rw-r--r--robots/make_level.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/robots/make_level.c b/robots/make_level.c
index de7f8d8f..a88ecb50 100644
--- a/robots/make_level.c
+++ b/robots/make_level.c
@@ -1,4 +1,4 @@
-/* $NetBSD: make_level.c,v 1.9 2009/07/20 06:00:56 dholland Exp $ */
+/* $NetBSD: make_level.c,v 1.10 2009/07/20 06:39:06 dholland Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -34,10 +34,12 @@
#if 0
static char sccsid[] = "@(#)make_level.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: make_level.c,v 1.9 2009/07/20 06:00:56 dholland Exp $");
+__RCSID("$NetBSD: make_level.c,v 1.10 2009/07/20 06:39:06 dholland Exp $");
#endif
#endif /* not lint */
+#include <curses.h>
+#include <string.h>
#include "robots.h"
/*
@@ -59,7 +61,7 @@ make_level(void)
if (My_pos.y > 0)
mvaddch(My_pos.y, My_pos.x, ' ');
- Waiting = FALSE;
+ Waiting = false;
Wait_bonus = 0;
leaveok(stdscr, FALSE);
for (cp = Robots; cp < &Robots[MAXROBOTS]; cp++)