Imported from LPlib, making sure the entry name (at least on Unix) is
[openssl.git] / crypto / o_str.h
index 5535123abc6039591ca8e1fdde5c9a0fcdb91fa7..4a70a9e00badda552abefd382ca964c3bf2c74c0 100644 (file)
@@ -59,9 +59,9 @@
 #ifndef HEADER_O_STR_H
 #define HEADER_O_STR_H
 
-#include <string.h>
+#include <stddef.h>            /* to get size_t */
 
 int OPENSSL_strcasecmp(const char *str1, const char *str2);
-int OPENSSL_strncasecmp(const char *str1, const char *str2, size_t n)
+int OPENSSL_strncasecmp(const char *str1, const char *str2, size_t n);
 
 #endif