summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/o_str.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/o_str.c')
-rw-r--r--src/lib/libcrypto/o_str.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/lib/libcrypto/o_str.c b/src/lib/libcrypto/o_str.c
deleted file mode 100644
index f05889e4c8..0000000000
--- a/src/lib/libcrypto/o_str.c
+++ /dev/null
@@ -1,21 +0,0 @@
1/* $OpenBSD: o_str.c,v 1.9 2014/07/09 20:22:14 tedu Exp $ */
2/*
3 * Written by Theo de Raadt. Public domain.
4 */
5
6#include <string.h>
7
8int OPENSSL_strcasecmp(const char *str1, const char *str2);
9int OPENSSL_strncasecmp(const char *str1, const char *str2, size_t n);
10
11int
12OPENSSL_strncasecmp(const char *str1, const char *str2, size_t n)
13{
14 return strncasecmp(str1, str2, n);
15}
16
17int
18OPENSSL_strcasecmp(const char *str1, const char *str2)
19{
20 return strcasecmp(str1, str2);
21}