Missing headers.
This commit is contained in:
parent
fa8e921f66
commit
f12797a447
2 changed files with 5 additions and 0 deletions
|
@ -116,6 +116,7 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <strings.h>
|
||||
#include <sys/types.h>
|
||||
#include <ctype.h>
|
||||
#include <errno.h>
|
||||
|
|
|
@ -60,6 +60,10 @@
|
|||
#include <e_os.h>
|
||||
#include "o_str.h"
|
||||
|
||||
#ifndef OPENSSL_IMPLEMENTS_strncasecmp
|
||||
# include <strings.h>
|
||||
#endif
|
||||
|
||||
int OPENSSL_strncasecmp(const char *str1, const char *str2, size_t n)
|
||||
{
|
||||
#if defined(OPENSSL_IMPLEMENTS_strncasecmp)
|
||||
|
|
Loading…
Reference in a new issue