Module Name: src Committed By: dholland Date: Sat Mar 22 18:58:57 UTC 2014
Modified Files: src/games/gomoku: bdisp.c gomoku.h Log Message: move extern decls to .h files To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 src/games/gomoku/bdisp.c cvs rdiff -u -r1.19 -r1.20 src/games/gomoku/gomoku.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/games/gomoku/bdisp.c diff -u src/games/gomoku/bdisp.c:1.16 src/games/gomoku/bdisp.c:1.17 --- src/games/gomoku/bdisp.c:1.16 Sat Feb 18 06:57:23 2012 +++ src/games/gomoku/bdisp.c Sat Mar 22 18:58:57 2014 @@ -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 static int lastline; static char pcolor[] = "*O.?"; -extern int interactive; -extern const char *plyr[]; - /* * Initialize screen display. */ Index: src/games/gomoku/gomoku.h diff -u src/games/gomoku/gomoku.h:1.19 src/games/gomoku/gomoku.h:1.20 --- src/games/gomoku/gomoku.h:1.19 Mon Mar 29 04:28:47 2010 +++ src/games/gomoku/gomoku.h Sat Mar 22 18:58:57 2014 @@ -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]; /* histo extern int movenum; extern int debug; +extern int interactive; +extern const char *plyr[]; + #define ASSERT(x) void bdinit(struct spotstr *);