summaryrefslogtreecommitdiffstats
path: root/gomoku/gomoku.h
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2014-03-22 18:58:57 +0000
committerdholland <dholland@NetBSD.org>2014-03-22 18:58:57 +0000
commita8777374397a2b8c881b5aedddb1125e1263fb0d (patch)
tree8d20a572be5643f57d0c7ad2fd2eb33e8eb93484 /gomoku/gomoku.h
parent9c23ddf050470f531504262a8b2f7dc0416facdd (diff)
downloadbsdgames-darwin-a8777374397a2b8c881b5aedddb1125e1263fb0d.tar.gz
bsdgames-darwin-a8777374397a2b8c881b5aedddb1125e1263fb0d.tar.zst
bsdgames-darwin-a8777374397a2b8c881b5aedddb1125e1263fb0d.zip
move extern decls to .h files
Diffstat (limited to 'gomoku/gomoku.h')
-rw-r--r--gomoku/gomoku.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/gomoku/gomoku.h b/gomoku/gomoku.h
index deca3ac5..abd1b6d0 100644
--- a/gomoku/gomoku.h
+++ b/gomoku/gomoku.h
@@ -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 *);