summaryrefslogtreecommitdiffstats
path: root/snake
diff options
context:
space:
mode:
authortron <tron@NetBSD.org>1999-08-14 16:38:45 +0000
committertron <tron@NetBSD.org>1999-08-14 16:38:45 +0000
commit94f9016ae34e296728f9a47ca262377f3c8bcb9e (patch)
treec40e52feeba2b0cb0d30dce1cd1c31f6168123db /snake
parentee3ef890f3db5e493c90390139b4f5fc4c0587e0 (diff)
downloadbsdgames-darwin-94f9016ae34e296728f9a47ca262377f3c8bcb9e.tar.gz
bsdgames-darwin-94f9016ae34e296728f9a47ca262377f3c8bcb9e.tar.zst
bsdgames-darwin-94f9016ae34e296728f9a47ca262377f3c8bcb9e.zip
Adapt to change of "termcap.h".
Diffstat (limited to 'snake')
-rw-r--r--snake/snake/move.c6
-rw-r--r--snake/snake/snake.h4
2 files changed, 5 insertions, 5 deletions
diff --git a/snake/snake/move.c b/snake/snake/move.c
index 3a6b3a43..4620e02a 100644
--- a/snake/snake/move.c
+++ b/snake/snake/move.c
@@ -1,4 +1,4 @@
-/* $NetBSD: move.c,v 1.15 1997/10/14 01:02:48 lukem Exp $ */
+/* $NetBSD: move.c,v 1.16 1999/08/14 16:38:45 tron Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)move.c 8.1 (Berkeley) 7/19/93";
#else
-__RCSID("$NetBSD: move.c,v 1.15 1997/10/14 01:02:48 lukem Exp $");
+__RCSID("$NetBSD: move.c,v 1.16 1999/08/14 16:38:45 tron Exp $");
#endif
#endif /* not lint */
@@ -108,7 +108,7 @@ int CMlength;
int NDlength;
int BSlength;
int delaystr[10];
-speed_t ospeed;
+short ospeed;
static char str[80];
diff --git a/snake/snake/snake.h b/snake/snake/snake.h
index d2ea8f17..1952385d 100644
--- a/snake/snake/snake.h
+++ b/snake/snake/snake.h
@@ -1,4 +1,4 @@
-/* $NetBSD: snake.h,v 1.10 1998/09/13 15:27:30 hubertf Exp $ */
+/* $NetBSD: snake.h,v 1.11 1999/08/14 16:38:46 tron Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -65,7 +65,7 @@ int AM, BW;
char tbuf[1024], tcapbuf[128];
int Klength; /* length of KX strings */
int chunk; /* amount of money given at a time */
-speed_t ospeed;
+short ospeed;
#ifdef debug
#define cashvalue (loot-penalty)/25
#else