aboutsummaryrefslogtreecommitdiffstats
path: root/cups/testarray.c
diff options
context:
space:
mode:
Diffstat (limited to 'cups/testarray.c')
-rw-r--r--cups/testarray.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cups/testarray.c b/cups/testarray.c
index 6164ffc6..892e3250 100644
--- a/cups/testarray.c
+++ b/cups/testarray.c
@@ -494,7 +494,7 @@ main(void)
* 'get_seconds()' - Get the current time in seconds...
*/
-#ifdef WIN32
+#ifdef _WIN32
# include <windows.h>
@@ -515,7 +515,7 @@ get_seconds(void)
gettimeofday(&curtime, NULL);
return (curtime.tv_sec + 0.000001 * curtime.tv_usec);
}
-#endif /* WIN32 */
+#endif /* _WIN32 */
/*