]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - robots/main.c
Remove is_hex_str() (trying to guess if a number was hex or not). It is not
[bsdgames-darwin.git] / robots / main.c
index a57cd0dd75427136e1133eeffb7d798311501db9..3030b4126ccaa8f141eca9bd7b7ee667abf8f8ab 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: main.c,v 1.31 2009/08/05 19:34:09 christos Exp $       */
+/*     $NetBSD: main.c,v 1.33 2020/07/26 15:38:22 nia Exp $    */
 
 /*
  * Copyright (c) 1980, 1993
@@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 1993\
 #if 0
 static char sccsid[] = "@(#)main.c     8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: main.c,v 1.31 2009/08/05 19:34:09 christos Exp $");
+__RCSID("$NetBSD: main.c,v 1.33 2020/07/26 15:38:22 nia Exp $");
 #endif
 #endif /* not lint */
 
@@ -57,6 +57,8 @@ __RCSID("$NetBSD: main.c,v 1.31 2009/08/05 19:34:09 christos Exp $");
 extern const char *Scorefile;
 extern int Max_per_uid;
 
+static bool another(void);
+
 int
 main(int argc, char **argv)
 {
@@ -165,7 +167,6 @@ main(int argc, char **argv)
                stdscr = newwin(Y_SIZE, X_SIZE, 0, 0);
        }
 
-       srandom(time(NULL));
        if (Real_time)
                signal(SIGALRM, move_robots);
        do {
@@ -210,7 +211,7 @@ quit(int dummy __unused)
  * another:
  *     See if another game is desired
  */
-bool
+static bool
 another(void)
 {
        int y;