diff options
author | Paul Janzen <pjanzen@cvs.openbsd.org> | 2001-02-18 03:32:53 +0000 |
---|---|---|
committer | Paul Janzen <pjanzen@cvs.openbsd.org> | 2001-02-18 03:32:53 +0000 |
commit | d53eadaf580866f1168125aeba82afae6ca37259 (patch) | |
tree | ebcbc96a4e642e612b98e70764810ad12b26f209 /games/backgammon/common_source/init.c | |
parent | f316b1c6d032ab614fe2cc886c5b286f3d80ea2d (diff) |
Get this not to segfault on startup on alpha.
Diffstat (limited to 'games/backgammon/common_source/init.c')
-rw-r--r-- | games/backgammon/common_source/init.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/backgammon/common_source/init.c b/games/backgammon/common_source/init.c index 60e386c78d2..7de84135f24 100644 --- a/games/backgammon/common_source/init.c +++ b/games/backgammon/common_source/init.c @@ -1,4 +1,4 @@ -/* $OpenBSD: init.c,v 1.3 1999/07/31 21:57:41 pjanzen Exp $ */ +/* $OpenBSD: init.c,v 1.4 2001/02/18 03:32:52 pjanzen Exp $ */ /* * Copyright (c) 1980, 1993 @@ -37,7 +37,7 @@ #if 0 static char sccsid[] = "@(#)init.c 8.1 (Berkeley) 5/31/93"; #else -static char rcsid[] = "$OpenBSD: init.c,v 1.3 1999/07/31 21:57:41 pjanzen Exp $"; +static char rcsid[] = "$OpenBSD: init.c,v 1.4 2001/02/18 03:32:52 pjanzen Exp $"; #endif #endif /* not lint */ @@ -107,4 +107,4 @@ int p[5]; int rscore; int table[6][6]; int wscore; -struct termios old, noech, raw; +struct termios old, noech, traw; |