diff options
author | tedu <> | 2014-04-17 20:40:24 +0000 |
---|---|---|
committer | tedu <> | 2014-04-17 20:40:24 +0000 |
commit | 50444bd3626236c1b5e0a9e61ff806b94fa6e54f (patch) | |
tree | 7c961de10862e8983fb0e0939fd65d020d7e9282 /src/lib/libcrypto/o_str.c | |
parent | 816c7c873767914a1ee22f5ce3f4143db7d22db8 (diff) | |
download | openbsd-50444bd3626236c1b5e0a9e61ff806b94fa6e54f.tar.gz openbsd-50444bd3626236c1b5e0a9e61ff806b94fa6e54f.tar.bz2 openbsd-50444bd3626236c1b5e0a9e61ff806b94fa6e54f.zip |
fold prototypes into o_str.c. miod
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 | { |