mirror of https://github.com/openssl/openssl.git
<strings.h> does not exist under WIN32.
This commit is contained in:
parent
addd641f3a
commit
52108cecc0
|
|
@ -116,7 +116,9 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#ifndef OPENSSL_SYSNAME_WIN32
|
||||
#include <strings.h>
|
||||
#endif
|
||||
#include <sys/types.h>
|
||||
#include <ctype.h>
|
||||
#include <errno.h>
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@
|
|||
#include <e_os.h>
|
||||
#include "o_str.h"
|
||||
|
||||
#ifndef OPENSSL_IMPLEMENTS_strncasecmp
|
||||
#if !defined(OPENSSL_IMPLEMENTS_strncasecmp) && !defined(OPENSSL_SYSNAME_WIN32)
|
||||
# include <strings.h>
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue