Fix windows build

Move #include's inside the #ifdef.

Reviewed-by: Matt Caswell <matt@openssl.org>
This commit is contained in:
Rich Salz 2015-06-23 18:33:02 -04:00 committed by Rich Salz
parent a16ca4e8ae
commit d4dfb0baf9

View File

@ -12,13 +12,13 @@
*/
#include <openssl/crypto.h>
#include <e_os.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <assert.h>
#if defined(OPENSSL_SYS_LINUX) || defined(OPENSSL_SYS_UNIX)
# define IMPLEMENTED
# include <stdlib.h>
# include <string.h>
# include <assert.h>
# include <unistd.h>
# include <sys/mman.h>
# include <sys/param.h>
#endif