diff options
author | Paul Janzen <pjanzen@cvs.openbsd.org> | 2002-05-31 05:11:38 +0000 |
---|---|---|
committer | Paul Janzen <pjanzen@cvs.openbsd.org> | 2002-05-31 05:11:38 +0000 |
commit | f78a5eeb5ae05049cc08ee1635f12a5d81b9a938 (patch) | |
tree | 7d741d2bdafc7eabd6e4a4a0edc1ee6a39e2e5bc /games/mille | |
parent | 2f4006bf08ae4d10962d5a3e8c2b4caf5f5af8ec (diff) |
crmode -> cbreak
Diffstat (limited to 'games/mille')
-rw-r--r-- | games/mille/mille.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/mille/mille.c b/games/mille/mille.c index 68fc3f88c88..4c63ff574d8 100644 --- a/games/mille/mille.c +++ b/games/mille/mille.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mille.c,v 1.11 2002/05/31 03:40:01 pjanzen Exp $ */ +/* $OpenBSD: mille.c,v 1.12 2002/05/31 05:11:37 pjanzen Exp $ */ /* $NetBSD: mille.c,v 1.4 1995/03/24 05:01:48 cgd Exp $ */ /* @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)mille.c 8.1 (Berkeley) 5/31/93"; #else -static char rcsid[] = "$OpenBSD: mille.c,v 1.11 2002/05/31 03:40:01 pjanzen Exp $"; +static char rcsid[] = "$OpenBSD: mille.c,v 1.12 2002/05/31 05:11:37 pjanzen Exp $"; #endif #endif /* not lint */ @@ -100,7 +100,7 @@ main(ac, av) # else srandom(0); # endif - crmode(); + cbreak(); noecho(); signal(SIGINT, rub); for (;;) { |