summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--backgammon/backgammon/main.c6
-rw-r--r--backgammon/teachgammon/teach.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/backgammon/backgammon/main.c b/backgammon/backgammon/main.c
index 0caa2db3..f12f89d7 100644
--- a/backgammon/backgammon/main.c
+++ b/backgammon/backgammon/main.c
@@ -1,4 +1,4 @@
-/* $NetBSD: main.c,v 1.12 1999/07/28 23:15:51 hubertf Exp $ */
+/* $NetBSD: main.c,v 1.13 1999/08/14 16:29:22 tron Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -43,7 +43,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 1993\n\
#if 0
static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: main.c,v 1.12 1999/07/28 23:15:51 hubertf Exp $");
+__RCSID("$NetBSD: main.c,v 1.13 1999/08/14 16:29:22 tron Exp $");
#endif
#endif /* not lint */
@@ -54,7 +54,7 @@ __RCSID("$NetBSD: main.c,v 1.12 1999/07/28 23:15:51 hubertf Exp $");
extern const char *const instr[]; /* text of instructions */
extern const char *const message[]; /* update message */
-speed_t ospeed; /* tty output speed */
+short ospeed; /* tty output speed */
const char *const helpm[] = { /* help message */
"Enter a space or newline to roll, or",
diff --git a/backgammon/teachgammon/teach.c b/backgammon/teachgammon/teach.c
index b0130d26..28e613fc 100644
--- a/backgammon/teachgammon/teach.c
+++ b/backgammon/teachgammon/teach.c
@@ -1,4 +1,4 @@
-/* $NetBSD: teach.c,v 1.9 1999/07/19 00:34:00 hubertf Exp $ */
+/* $NetBSD: teach.c,v 1.10 1999/08/14 16:29:23 tron Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -43,14 +43,14 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 1993\n\
#if 0
static char sccsid[] = "@(#)teach.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: teach.c,v 1.9 1999/07/19 00:34:00 hubertf Exp $");
+__RCSID("$NetBSD: teach.c,v 1.10 1999/08/14 16:29:23 tron Exp $");
#endif
#endif /* not lint */
#include "back.h"
#include "tutor.h"
-extern speed_t ospeed; /* tty output speed for termlib */
+extern short ospeed; /* tty output speed for termlib */
const char *const helpm[] = {
"\nEnter a space or newline to roll, or",