diff options
Diffstat (limited to 'src/lib/libcrypto/o_str.c')
-rw-r--r-- | src/lib/libcrypto/o_str.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/libcrypto/o_str.c b/src/lib/libcrypto/o_str.c index 1c70d263b6..a22b6d7d09 100644 --- a/src/lib/libcrypto/o_str.c +++ b/src/lib/libcrypto/o_str.c | |||
@@ -4,9 +4,12 @@ | |||
4 | 4 | ||
5 | #include <ctype.h> | 5 | #include <ctype.h> |
6 | #include <e_os.h> | 6 | #include <e_os.h> |
7 | #include "o_str.h" | ||
8 | #include <string.h> | 7 | #include <string.h> |
9 | 8 | ||
9 | int OPENSSL_strcasecmp(const char *str1, const char *str2); | ||
10 | int OPENSSL_strncasecmp(const char *str1, const char *str2, size_t n); | ||
11 | int OPENSSL_memcmp(const void *p1, const void *p2, size_t n); | ||
12 | |||
10 | int | 13 | int |
11 | OPENSSL_strncasecmp(const char *str1, const char *str2, size_t n) | 14 | OPENSSL_strncasecmp(const char *str1, const char *str2, size_t n) |
12 | { | 15 | { |