The Windows build was missing the `print_statistics()` function, this commit
moves the function out of the `#ifndef __WIN32__` guard.
*/
bool segvSpin = false;
-#ifndef __WIN32__
-
-size_t cvc4StackSize;
-void* cvc4StackBase;
-
void print_statistics() {
if (pOptions != NULL && pOptions->getStatistics() && pExecutor != NULL) {
if (pTotalTime != NULL && pTotalTime->running()) {
}
}
+#ifndef __WIN32__
+
+size_t cvc4StackSize;
+void* cvc4StackBase;
+
/** Handler for SIGXCPU, i.e., timeout. */
void timeout_handler(int sig, siginfo_t* info, void*) {
safe_print(STDERR_FILENO, "CVC4 interrupted by timeout.\n");