]> git.cameronkatri.com Git - bsdgames-darwin.git/commitdiff
move extern decls to .h files
authordholland <dholland@NetBSD.org>
Sat, 22 Mar 2014 18:58:57 +0000 (18:58 +0000)
committerdholland <dholland@NetBSD.org>
Sat, 22 Mar 2014 18:58:57 +0000 (18:58 +0000)
gomoku/bdisp.c
gomoku/gomoku.h

index ae18d455bc2cb21cae7aa733d0e1444bae0e5edd..db2e74a2235d03f813fd172eecb3150f85b5c872 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: bdisp.c,v 1.16 2012/02/18 06:57:23 matt Exp $  */
+/*     $NetBSD: bdisp.c,v 1.17 2014/03/22 18:58:57 dholland Exp $      */
 
 /*
  * Copyright (c) 1994
@@ -37,7 +37,7 @@
 #if 0
 static char sccsid[] = "@(#)bdisp.c    8.2 (Berkeley) 5/3/95";
 #else
-__RCSID("$NetBSD: bdisp.c,v 1.16 2012/02/18 06:57:23 matt Exp $");
+__RCSID("$NetBSD: bdisp.c,v 1.17 2014/03/22 18:58:57 dholland Exp $");
 #endif
 #endif /* not lint */
 
@@ -53,9 +53,6 @@ __RCSID("$NetBSD: bdisp.c,v 1.16 2012/02/18 06:57:23 matt Exp $");
 static int     lastline;
 static char    pcolor[] = "*O.?";
 
-extern int interactive;
-extern const char *plyr[];
-
 /*
  * Initialize screen display.
  */
index deca3ac51da312bac3eef314071135c0af6c9839..abd1b6d03aebdbd5133786055cff9cb337438fa3 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: gomoku.h,v 1.19 2010/03/29 04:28:47 dholland Exp $     */
+/*     $NetBSD: gomoku.h,v 1.20 2014/03/22 18:58:57 dholland Exp $     */
 
 /*
  * Copyright (c) 1994
@@ -265,6 +265,9 @@ extern      int     movelog[BSZ * BSZ];             /* history of moves */
 extern int     movenum;
 extern int     debug;
 
+extern int interactive;
+extern const char *plyr[];
+
 #define ASSERT(x)
 
 void   bdinit(struct spotstr *);