diff options
author | Andy Polyakov <appro@openssl.org> | 2016-06-26 13:40:15 +0200 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2016-07-08 11:49:44 +0200 |
commit | f1f5ee17b64397eecfde39960ca11e94064297bd (patch) | |
tree | 811a0a155a461065aecca798e7b7e090de7b80d9 /test/threadstest.c | |
parent | Support PKCS v2.0 print in pkcs12 utility. (diff) | |
download | openssl-f1f5ee17b64397eecfde39960ca11e94064297bd.tar.xz openssl-f1f5ee17b64397eecfde39960ca11e94064297bd.zip |
include/openssl: don't include <windows.h> in public headers.
If application uses any of Windows-specific interfaces, make it
application developer's respondibility to include <windows.h>.
Rationale is that <windows.h> is quite "toxic" and is sensitive
to inclusion order (most notably in relation to <winsock2.h>).
It's only natural to give complete control to the application developer.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'test/threadstest.c')
-rw-r--r-- | test/threadstest.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/threadstest.c b/test/threadstest.c index db864b2900..b2e96fa3a1 100644 --- a/test/threadstest.c +++ b/test/threadstest.c @@ -7,6 +7,10 @@ * https://www.openssl.org/source/license.html */ +#if defined(_WIN32) +# include <windows.h> +#endif + #include <stdio.h> #include <openssl/crypto.h> |