Use _WIN32 over WIN32 for preprocessor conditional
authorBenjamin Kaduk <bkaduk@akamai.com>
Thu, 29 Dec 2016 17:38:24 +0000 (11:38 -0600)
committerRich Salz <rsalz@openssl.org>
Thu, 16 Feb 2017 14:15:46 +0000 (09:15 -0500)
commit88a3b5322170444d8d4003f6d8af82c3976c570b
tree73a2f8dca15b29c744625288c13bd676347add5d
parentffb1e659b2546cb704ef56ae01176b9062ef1c6f
Use _WIN32 over WIN32 for preprocessor conditional

The intent seems to be that the WIN32 symbol is for things that are a direct
byproduct of being a windows-variant configuration and should be used for
feature en/disablement on windows systems.  Use of the _WIN32 symbol is more
widespread, being used to implement platform portability of more generic code.

We do define WIN32 in some situations in e_os.h, but that is not included
universally.

Reviewed-by: Andy Polyakov <appro@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2642)
(cherry picked from commit ac879ed62a19f3c878f7be3020a1b93cc77f4b38)
crypto/seed/seed.c