diff options
| author | John Birrell <jb@FreeBSD.org> | 1998-05-09 09:22:33 +0000 |
|---|---|---|
| committer | John Birrell <jb@FreeBSD.org> | 1998-05-09 09:22:33 +0000 |
| commit | fef9452ba3097769f421e9b15c7cae2adcc453a7 (patch) | |
| tree | 376285ff7b2417ed904a90183728f349c12ae675 | |
| parent | ae87c5339483211d7d75fac4806ee4d1d95e764d (diff) | |
Notes
| -rw-r--r-- | games/backgammon/common_source/subs.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/games/backgammon/common_source/subs.c b/games/backgammon/common_source/subs.c index 7a6e1ba9558a..a9e998bb5271 100644 --- a/games/backgammon/common_source/subs.c +++ b/games/backgammon/common_source/subs.c @@ -74,8 +74,8 @@ register char *s1, *s2; while ( (*s1++ = *s2++) != '\0'); } -addbuf (c) -register char c; +int addbuf (c) +register int c; { buffnum++; @@ -85,6 +85,7 @@ register char c; buffnum = 0; } outbuff[buffnum] = c; + return (0); } buflush () { |
