]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - mille/init.c
cgram: provide usage on incorrect invocation
[bsdgames-darwin.git] / mille / init.c
index 0fa3579c8ee19a5a3f6a3083e7c519791e5f277f..6d6d514758d44e4e0221a373c1105d1bec7d5eff 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: init.c,v 1.7 1997/10/12 00:53:59 lukem Exp $   */
+/*     $NetBSD: init.c,v 1.11 2009/05/25 23:34:50 dholland 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.
  *
 #if 0
 static char sccsid[] = "@(#)init.c     8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: init.c,v 1.7 1997/10/12 00:53:59 lukem Exp $");
+__RCSID("$NetBSD: init.c,v 1.11 2009/05/25 23:34:50 dholland Exp $");
 #endif
 #endif /* not lint */
 
-# include      "mille.h"
+#include "mille.h"
 
 /*
  * @(#)init.c  1.1 (Berkeley) 4/1/82
  */
 
 void
-init()
+init(void)
 {
        PLAY    *pp;
        int     i, j;
@@ -69,7 +65,7 @@ init()
                        pp->hand[j] = *--Topcard;
                        if (i == COMP) {
                                account(card = *Topcard);
-                               if (issafety(card))
+                               if (is_safety(card))
                                        pp->safety[card - S_CONV] = S_IN_HAND;
                        }
                }
@@ -93,7 +89,7 @@ init()
 }
 
 void
-shuffle()
+shuffle(void)
 {
        int     i, r;
        CARD    temp;
@@ -112,7 +108,7 @@ shuffle()
 }
 
 void
-newboard()
+newboard(void)
 {
        int             i;
        PLAY            *pp;
@@ -171,7 +167,7 @@ newboard()
 }
 
 void
-newscore()
+newscore(void)
 {
        int             i, new;
        PLAY            *pp;