summaryrefslogtreecommitdiff
path: root/lib/libcrypto
diff options
context:
space:
mode:
authorTed Unangst <tedu@cvs.openbsd.org>2014-05-25 17:51:12 +0000
committerTed Unangst <tedu@cvs.openbsd.org>2014-05-25 17:51:12 +0000
commit144a9e71e2c59d2a3859e016003d21d9f7cc4e84 (patch)
treef689524591af4a8e0b94c41db935558bc1d517d1 /lib/libcrypto
parentf8b6ce7658ac5c79a2b61b3c30d349a1f2329dc2 (diff)
remove OPENSSL_memcmp before somebody tries to use it. ok beck miod
Diffstat (limited to 'lib/libcrypto')
-rw-r--r--lib/libcrypto/o_str.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/libcrypto/o_str.c b/lib/libcrypto/o_str.c
index f7be15bd5a0..b24537ffeb3 100644
--- a/lib/libcrypto/o_str.c
+++ b/lib/libcrypto/o_str.c
@@ -19,9 +19,3 @@ OPENSSL_strcasecmp(const char *str1, const char *str2)
{
return strcasecmp(str1, str2);
}
-
-int
-OPENSSL_memcmp(const void *v1, const void *v2, size_t n)
-{
- return memcmp(v1, v2, n);
-}