summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-12-27 14:54:48 +0000
committerRichard Levitte <levitte@openssl.org>2003-12-27 14:54:48 +0000
commitf0c5db92f76d5be7639f78215a2190db56111602 (patch)
tree180d3933a1901f45b62f89c5fc7c0eda61f396e5
parentd420ac2c7d4ba9d99ff2c257a3ad71ecc6d876e2 (diff)
Include strings.h so strcasecmp() and strncasecmp() get properly declared.
-rw-r--r--crypto/o_str.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/o_str.c b/crypto/o_str.c
index 174db3156e..efe20b77a9 100644
--- a/crypto/o_str.c
+++ b/crypto/o_str.c
@@ -56,7 +56,8 @@
*
*/
-#include <o_str.h>
+#include <strings.h>
+#include "o_str.h"
#include <openssl/e_os2.h>
int OPENSSL_strncasecmp(const char *str1, const char *str2, size_t n)