summaryrefslogtreecommitdiffstats
path: root/e_os.h
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2005-09-20 20:19:07 +0000
committerAndy Polyakov <appro@openssl.org>2005-09-20 20:19:07 +0000
commit7a06050cd356001ec80a9202f50de6eb4e09f6e7 (patch)
treef58dc4c4533fb0ce0d689b52bb6bbdf4d07ec59d /e_os.h
parent6f9afa68cdd33acb24ac3c8bb43eff179108a73e (diff)
"Overload" SunOS 4.x memcmp, which ruins ASN1_OBJECT table lookups.
PR: 1196 Submitted by: Russel Ruby
Diffstat (limited to 'e_os.h')
-rw-r--r--e_os.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/e_os.h b/e_os.h
index 9bebed131e..e156b63394 100644
--- a/e_os.h
+++ b/e_os.h
@@ -565,6 +565,9 @@ extern HINSTANCE _hInstance;
extern char *sys_errlist[]; 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 "o_str.h"
+# define memcmp OPENSSL_memcmp
#endif
#ifndef OPENSSL_EXIT