]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - mille/print.c
Include <sys/endian.h>.
[bsdgames-darwin.git] / mille / print.c
index dee19d4abdd75ce9f43f7c5d3362cf52b16406ce..f850371b240968045ab023555b05444e1ebbe6d6 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: print.c,v 1.6 1997/10/12 00:54:24 lukem Exp $  */
+/*     $NetBSD: print.c,v 1.11 2003/08/07 09:37:26 agc Exp $   */
 
 /*
  * Copyright (c) 1982, 1993
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- *    must display the following acknowledgement:
- *     This product includes software developed by the University of
- *     California, Berkeley and its contributors.
- * 4. Neither the name of the University nor the names of its contributors
+ * 3. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  *
@@ -38,7 +34,7 @@
 #if 0
 static char sccsid[] = "@(#)print.c    8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: print.c,v 1.6 1997/10/12 00:54:24 lukem Exp $");
+__RCSID("$NetBSD: print.c,v 1.11 2003/08/07 09:37:26 agc Exp $");
 #endif
 #endif /* not lint */
 
@@ -70,7 +66,7 @@ prboard()
                show_card(14, temp, pp->battle, &pp->sh_battle);
                show_card(16, temp, pp->speed, &pp->sh_speed);
                for (i = C_25; i <= C_200; i++) {
-                       char    *name;
+                       const char      *name;
                        int     end;
 
                        if (pp->nummiles[i] == pp->sh_nummiles[i])
@@ -89,7 +85,7 @@ prboard()
        pp = &Player[PLAYER];
        for (i = 0; i < HAND_SZ; i++)
                show_card(i + 6, temp, pp->hand[i], &pp->sh_hand[i]);
-       mvprintw(6, COMP_STRT + CARD_STRT, "%2d", Topcard - Deck);
+       mvprintw(6, COMP_STRT + CARD_STRT, "%2ld", (long)(Topcard - Deck));
        show_card(8, COMP_STRT + CARD_STRT, Discard, &Sh_discard);
        if (End == 1000) {
                move(EXT_Y, EXT_X);
@@ -122,7 +118,11 @@ static char        Score_fmt[] = "%4d";
 
 void
 prscore(for_real)
-       bool    for_real; 
+#ifdef EXTRAP
+       bool    for_real;
+#else
+       bool    for_real __attribute__((__unused__));
+#endif
 {
        PLAY    *pp;
        int     x;