diff options
| author | thorpej <thorpej@NetBSD.org> | 1997-03-29 20:42:16 +0000 |
|---|---|---|
| committer | thorpej <thorpej@NetBSD.org> | 1997-03-29 20:42:16 +0000 |
| commit | 77949edf212dfa805753ec2d69e3e91181793816 (patch) | |
| tree | 38dc3a79b1e3202a6905ed8ef8bf8c43e510bd44 /monop/initdeck.c | |
| parent | 784e053db46cac58a3b6f04fab70c712fc6f968b (diff) | |
| download | bsdgames-darwin-77949edf212dfa805753ec2d69e3e91181793816.tar.gz bsdgames-darwin-77949edf212dfa805753ec2d69e3e91181793816.zip | |
Make these compile on the PowerPC (an unsigned char system).
Diffstat (limited to 'monop/initdeck.c')
| -rw-r--r-- | monop/initdeck.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/monop/initdeck.c b/monop/initdeck.c index c2ff8310..7d79c31c 100644 --- a/monop/initdeck.c +++ b/monop/initdeck.c @@ -1,4 +1,4 @@ -/* $NetBSD: initdeck.c,v 1.3 1995/03/23 08:34:43 cgd Exp $ */ +/* $NetBSD: initdeck.c,v 1.4 1997/03/29 20:42:23 thorpej Exp $ */ /* * Copyright (c) 1980, 1993 @@ -43,7 +43,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)initdeck.c 8.1 (Berkeley) 5/31/93"; #else -static char rcsid[] = "$NetBSD: initdeck.c,v 1.3 1995/03/23 08:34:43 cgd Exp $"; +static char rcsid[] = "$NetBSD: initdeck.c,v 1.4 1997/03/29 20:42:23 thorpej Exp $"; #endif #endif /* not lint */ @@ -130,7 +130,7 @@ count() { reg bool newline; reg DECK *in_deck; - reg char c; + reg int c; newline = TRUE; in_deck = &CC_D; @@ -152,7 +152,7 @@ putem() { reg bool newline; reg DECK *in_deck; - reg char c; + reg int c; reg int num; in_deck = &CC_D; |
