From dc56eb507997848532be954a658e3a6136e908a3 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 8 Jul 2004 08:32:48 +0000 Subject: o_str.c: Windows doesn't have , and since we use _strnicmp() and _stricmp() on that platform, use the appropriate header file for it, . o_str.h: we only want to get size_t, which is defined in . Philippe Bougeret notified us about Windows not having a --- crypto/o_str.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'crypto/o_str.c') diff --git a/crypto/o_str.c b/crypto/o_str.c index 42b25d078f..7189d13352 100644 --- a/crypto/o_str.c +++ b/crypto/o_str.c @@ -57,9 +57,13 @@ */ #include -#include -#include "o_str.h" #include +#ifdef OPENSSL_SYS_WINDOWS +# include +#else +# include +#endif +#include "o_str.h" #undef strncasecmp #undef strcasecmp -- cgit v1.2.3