diff options
| -rw-r--r-- | latin.c | 4 | ||||
| -rw-r--r-- | latin.h | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -16,6 +16,10 @@ * Solver. */ +#ifdef STANDALONE_SOLVER +int solver_show_working, solver_recurse_depth; +#endif + /* * Function called when we are certain that a particular square has * a particular number in it. The y-coordinate passed in here is @@ -8,7 +8,7 @@ typedef unsigned char digit; /* --- Solver structures, definitions --- */ #ifdef STANDALONE_SOLVER -int solver_show_working, solver_recurse_depth; +extern int solver_show_working, solver_recurse_depth; #endif struct latin_solver { |