summaryrefslogtreecommitdiff
path: root/testing/crypto_speed_test.c
diff options
context:
space:
mode:
authorBen Iofel <iofelben@gmail.com>2014-01-19 18:18:25 -0500
committerBen Iofel <iofelben@gmail.com>2014-01-19 19:30:14 -0500
commit174cec7f158aed30e66d358c37190c0f3f1fc2c3 (patch)
tree0b93d94b1174b2b3d39004a24f670f37ff0396c8 /testing/crypto_speed_test.c
parent01c3c1be728f39cd398be3d0e49e1aaadc0df029 (diff)
proper windows preprocessor detection
Diffstat (limited to 'testing/crypto_speed_test.c')
-rw-r--r--testing/crypto_speed_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/crypto_speed_test.c b/testing/crypto_speed_test.c
index ddf9f512..60ff1937 100644
--- a/testing/crypto_speed_test.c
+++ b/testing/crypto_speed_test.c
@@ -3,7 +3,7 @@
3#endif 3#endif
4 4
5// Hi-resolution timer 5// Hi-resolution timer
6#ifdef WIN32 6#if defined(_WIN32) || defined(__WIN32__) || defined (WIN32)
7#ifndef WINVER 7#ifndef WINVER
8//Windows XP 8//Windows XP
9#define WINVER 0x0501 9#define WINVER 0x0501