diff options
author | Bill Fumerola <billf@FreeBSD.org> | 1999-11-16 02:58:06 +0000 |
---|---|---|
committer | Bill Fumerola <billf@FreeBSD.org> | 1999-11-16 02:58:06 +0000 |
commit | 727bf60729b6e2f693b3a1162a2f4b32e49bf8bd (patch) | |
tree | a0cca4d47c73890ff2acd4b0d9331509ac360eb2 /games/phantasia/interplayer.c | |
parent | 879099e5568801911b66f1ea9085fed24fc12560 (diff) | |
download | src-727bf60729b6e2f693b3a1162a2f4b32e49bf8bd.tar.gz src-727bf60729b6e2f693b3a1162a2f4b32e49bf8bd.zip |
Sync our register usage with NetBSD's (non-)usage.
Notes
Notes:
svn path=/head/; revision=53210
Diffstat (limited to 'games/phantasia/interplayer.c')
-rw-r--r-- | games/phantasia/interplayer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/phantasia/interplayer.c b/games/phantasia/interplayer.c index 16ef1a654512..6a7f9eccd54a 100644 --- a/games/phantasia/interplayer.c +++ b/games/phantasia/interplayer.c @@ -114,7 +114,7 @@ long foeplace; { double dtemp; /* for temporary calculations */ double oldhits = 0.0; /* previous damage inflicted by foe */ -register int loop; /* for timing out */ +int loop; /* for timing out */ int ch; /* input */ short oldtampered; /* old value of foe's p_tampered */ @@ -733,7 +733,7 @@ long loc; /* location in file of other players */ userlist(ingameflag) bool ingameflag; { -register int numusers = 0; /* number of users on file */ +int numusers = 0; /* number of users on file */ if (ingameflag && Player.p_blindness) { @@ -1160,7 +1160,7 @@ FILE *fp; /* for opening gold file */ *************************************************************************/ writevoid(vp, loc) -register struct energyvoid *vp; +struct energyvoid *vp; long loc; { |