aboutsummaryrefslogtreecommitdiff
path: root/games/battlestar/fly.c
diff options
context:
space:
mode:
authorJohn Birrell <jb@FreeBSD.org>1998-05-09 09:39:46 +0000
committerJohn Birrell <jb@FreeBSD.org>1998-05-09 09:39:46 +0000
commitea565b5141e461610f9d64f40c987a043b151756 (patch)
tree23c15363e977cdd19f79b0689edc627eea755f94 /games/battlestar/fly.c
parenteb3846e9e5f8c667b6e2e03c0cb885595f8711d0 (diff)
downloadsrc-ea565b5141e461610f9d64f40c987a043b151756.tar.gz
src-ea565b5141e461610f9d64f40c987a043b151756.zip
Add #include string.h to get prototypes.
Notes
Notes: svn path=/head/; revision=35873
Diffstat (limited to 'games/battlestar/fly.c')
-rw-r--r--games/battlestar/fly.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/games/battlestar/fly.c b/games/battlestar/fly.c
index 118ff165e861..5bc55e789652 100644
--- a/games/battlestar/fly.c
+++ b/games/battlestar/fly.c
@@ -38,6 +38,7 @@ static char sccsid[] = "@(#)fly.c 8.1 (Berkeley) 5/31/93";
#include "externs.h"
#undef UP
#include <curses.h>
+#include <string.h>
#define abs(a) ((a) < 0 ? -(a) : (a))
#define MIDR (LINES/2 - 1)