<strings.h> does not exist under WIN32.

This commit is contained in:
Dr. Stephen Henson 2008-01-14 18:10:55 +00:00
parent addd641f3a
commit 52108cecc0
2 changed files with 3 additions and 1 deletions

View File

@ -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>

View File

@ -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