summaryrefslogtreecommitdiffstats
path: root/e_os.h
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2015-05-14 14:54:49 +0200
committerRichard Levitte <levitte@openssl.org>2015-05-14 15:13:49 +0200
commit685707979100dcb344f3d5f29940afcb1e7a92c2 (patch)
treec7ade427fe7d2bac0244c0f8016232fc0f8f3f03 /e_os.h
parent167f6c93b00e1184b89d6a5c7a1ed22dbab03c68 (diff)
Identify and move OpenSSL internal header files
There are header files in crypto/ that are used by the rest of OpenSSL. Move those to include/internal and adapt the affected source code, Makefiles and scripts. The header files that got moved are: crypto/constant_time_locl.h crypto/o_dir.h crypto/o_str.h Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'e_os.h')
-rw-r--r--e_os.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/e_os.h b/e_os.h
index 7f94bfcae6..4c1b4aa1de 100644
--- a/e_os.h
+++ b/e_os.h
@@ -605,7 +605,7 @@ extern int sys_nerr;
# define strerror(errnum) \
(((errnum)<0 || (errnum)>=sys_nerr) ? NULL : sys_errlist[errnum])
/* Being signed SunOS 4.x memcpy breaks ASN1_OBJECT table lookup */
-# include "crypto/o_str.h"
+# include "internal/o_str.h"
# define memcmp OPENSSL_memcmp
# endif
@@ -624,7 +624,7 @@ extern int sys_nerr;
# define strncasecmp _strnicmp
# elif defined(OPENSSL_SYS_VMS)
/* VMS below version 7.0 doesn't have strcasecmp() */
-# include "o_str.h"
+# include "internal/o_str.h"
# define strcasecmp OPENSSL_strcasecmp
# define strncasecmp OPENSSL_strncasecmp
# define OPENSSL_IMPLEMENTS_strncasecmp