]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - hack/hack.rip.c
tetris: Use arc4random_uniform instead of modulo for better randomness
[bsdgames-darwin.git] / hack / hack.rip.c
index a0b11671c68f615d32a22d98aafeed3c64ca020d..9c2c199a262b33d79324b84b8e0f19e395bf67ed 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: hack.rip.c,v 1.11 2009/06/29 23:05:33 dholland Exp $   */
+/*     $NetBSD: hack.rip.c,v 1.12 2009/08/12 07:28:41 dholland Exp $   */
 
 /*
  * Copyright (c) 1985, Stichting Centrum voor Wiskunde en Informatica,
@@ -63,7 +63,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: hack.rip.c,v 1.11 2009/06/29 23:05:33 dholland Exp $");
+__RCSID("$NetBSD: hack.rip.c,v 1.12 2009/08/12 07:28:41 dholland Exp $");
 #endif                         /* not lint */
 
 #include "hack.h"
@@ -83,6 +83,8 @@ static const char    *ripbot = "\
                  *|     *  *  *      | *\n\
         _________)/\\\\_//(\\/(/\\)/\\//\\/|_)_______";
 
+static void center(int, char *);
+
 void
 outrip(void)
 {
@@ -124,7 +126,7 @@ outrip(void)
        getret();
 }
 
-void
+static void
 center(int line __unused, char *text)
 {
        int             n = strlen(text) / 2;