summaryrefslogtreecommitdiffstats
path: root/gomoku/main.c
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2010-03-29 05:16:08 +0000
committerdholland <dholland@NetBSD.org>2010-03-29 05:16:08 +0000
commit21d2189c49223d1104b3c8bcd02d668243d118f1 (patch)
tree45305a430aaa562bd17615015d173b3764848f94 /gomoku/main.c
parent02c60ff9fc0555ec4b69409ff2d0be522ff67ee7 (diff)
downloadbsdgames-darwin-21d2189c49223d1104b3c8bcd02d668243d118f1.tar.gz
bsdgames-darwin-21d2189c49223d1104b3c8bcd02d668243d118f1.tar.zst
bsdgames-darwin-21d2189c49223d1104b3c8bcd02d668243d118f1.zip
remove #ifdef SVR4
Diffstat (limited to 'gomoku/main.c')
-rw-r--r--gomoku/main.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/gomoku/main.c b/gomoku/main.c
index a09d417c..4d5cf2dd 100644
--- a/gomoku/main.c
+++ b/gomoku/main.c
@@ -1,4 +1,4 @@
-/* $NetBSD: main.c,v 1.24 2010/03/29 04:28:47 dholland Exp $ */
+/* $NetBSD: main.c,v 1.25 2010/03/29 05:16:08 dholland Exp $ */
/*
* Copyright (c) 1994
@@ -42,7 +42,7 @@ __COPYRIGHT("@(#) Copyright (c) 1994\
#if 0
static char sccsid[] = "@(#)main.c 8.4 (Berkeley) 5/4/95";
#else
-__RCSID("$NetBSD: main.c,v 1.24 2010/03/29 04:28:47 dholland Exp $");
+__RCSID("$NetBSD: main.c,v 1.25 2010/03/29 05:16:08 dholland Exp $");
#endif
#endif /* not lint */
@@ -145,11 +145,7 @@ main(int argc, char **argv)
}
if (!debug)
-#ifdef SVR4
- srand(time(0));
-#else
srandom(time(0));
-#endif
if (interactive)
cursinit(); /* initialize curses */
again: