Make parallel unit testing work on windows
Review URL: https://codereview.chromium.org/14072002

git-svn-id: http://skia.googlecode.com/svn/trunk@8594 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/src/pathops/SkPathOpsDebug.h b/src/pathops/SkPathOpsDebug.h
index 9735112..53991bc 100644
--- a/src/pathops/SkPathOpsDebug.h
+++ b/src/pathops/SkPathOpsDebug.h
@@ -18,8 +18,6 @@
 #define ONE_OFF_DEBUG 0
 #define ONE_OFF_DEBUG_MATHEMATICA 0
 
-#if defined SK_DEBUG || !FORCE_RELEASE
-
 #ifdef SK_BUILD_FOR_WIN
     #define SK_RAND(seed) rand()
     #define SK_SNPRINTF _snprintf
@@ -28,12 +26,15 @@
     #define SK_SNPRINTF snprintf
 #endif
 
+#if defined SK_DEBUG || !FORCE_RELEASE
+
 void mathematica_ize(char* str, size_t bufferSize);
 bool valid_wind(int winding);
 void winding_printf(int winding);
 
 extern int gDebugMaxWindSum;
 extern int gDebugMaxWindValue;
+
 #endif
 
 #if FORCE_RELEASE