diff options
author | billf <billf@FreeBSD.org> | 1999-11-16 02:58:06 +0000 |
---|---|---|
committer | billf <billf@FreeBSD.org> | 1999-11-16 02:58:06 +0000 |
commit | 44fac3a89d25ca434f91c4f961a363ea590faae8 (patch) | |
tree | a0cca4d47c73890ff2acd4b0d9331509ac360eb2 /games/backgammon/common_source/table.c | |
parent | ecc8d489403ddff78c214db39def15049d5dae6a (diff) | |
download | FreeBSD-src-44fac3a89d25ca434f91c4f961a363ea590faae8.zip FreeBSD-src-44fac3a89d25ca434f91c4f961a363ea590faae8.tar.gz |
Sync our register usage with NetBSD's (non-)usage.
Diffstat (limited to 'games/backgammon/common_source/table.c')
-rw-r--r-- | games/backgammon/common_source/table.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/games/backgammon/common_source/table.c b/games/backgammon/common_source/table.c index d8f074d..b64f09b 100644 --- a/games/backgammon/common_source/table.c +++ b/games/backgammon/common_source/table.c @@ -81,8 +81,8 @@ checkmove (ist) int ist; { - register int j, n; - register char c; + int j, n; + char c; char a; domove: @@ -202,10 +202,10 @@ dochar: dotable (c,i) char c; -register int i; +int i; { - register int a, j; + int a, j; int test; test = (c == 'R'); @@ -298,7 +298,7 @@ register int i; } rsetbrd () { - register int i, j, n; + int i, j, n; n = 0; mvl = 0; |