summaryrefslogtreecommitdiffstats
path: root/include/internal
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-05-27 10:12:58 +0200
committerRichard Levitte <levitte@openssl.org>2016-05-28 02:15:04 +0200
commit7233bea26350d0541909a2fe30e87a95327fb065 (patch)
treee64babb3bf6207ce04ce99ef33d931deb0eeb350 /include/internal
parent90edbfcce3b84287332ac77f19993cbc18effdef (diff)
Remove internal functions OPENSSL_strcasecmp and OPENSSL_strncasecmp
Their only reason to exist was that they didn't exist in VMS before version 7.0. We do not support such old versions any more. However, for the benefit of systems that don't get strings.h included by string.h, we include the former in e_os.h. RT#4458 Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
Diffstat (limited to 'include/internal')
-rw-r--r--include/internal/o_str.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/internal/o_str.h b/include/internal/o_str.h
index c1bf7ef039..86403c9ee2 100644
--- a/include/internal/o_str.h
+++ b/include/internal/o_str.h
@@ -12,8 +12,6 @@
# 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_memcmp(const void *p1, const void *p2, size_t n);
#endif