diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1999-09-04 14:39:19 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1999-09-04 14:39:19 +0000 |
| commit | f9f5cfd4dd1a98821f3ddd0d18d7e649a7695bb4 (patch) | |
| tree | 0cef5ab7c3b0262d8a59313a6f6c165243b48ccd | |
| parent | 808697bc7028738c6efd01a6d3f876663b59b102 (diff) | |
Notes
| -rw-r--r-- | games/snake/snake/move.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/games/snake/snake/move.c b/games/snake/snake/move.c index 4401a0d44659..a4c35ed7f6be 100644 --- a/games/snake/snake/move.c +++ b/games/snake/snake/move.c @@ -84,7 +84,7 @@ static char sccsid[] = "@(#)move.c 8.1 (Berkeley) 7/19/93"; * * point(&p,x,y) return point set to x,y. * - * baudrate(x) returns the baudrate of the terminal. + * baudrate() returns the baudrate of the terminal. * delay(t) causes an approximately constant delay * independent of baudrate. * Duration is ~ t/20 seconds. @@ -506,6 +506,8 @@ char *str; if (str) tputs(str, 1, outch); } + +#if 0 baudrate() { @@ -522,6 +524,8 @@ baudrate() return(0); } } +#endif + delay(t) int t; { |
