aboutsummaryrefslogtreecommitdiffstats
path: root/e_os.h
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2000-05-31 16:42:47 +0000
committerBodo Möller <bodo@openssl.org>2000-05-31 16:42:47 +0000
commitaf463e7e1909666ef35e39fcf6939fb2fe1899b1 (patch)
tree58cadaa5dac88dc8c91b8f11983dc478fb2f7622 /e_os.h
parent01296a6de0f968d741d871efda8ab4ed5420442d (diff)
downloadopenssl-af463e7e1909666ef35e39fcf6939fb2fe1899b1.tar.gz
When compiling with /opt/SUNWspro/SC4.2/bin/cc on Solaris, __svr4__ is
not defined, but __SVR4 is.
Diffstat (limited to 'e_os.h')
-rw-r--r--e_os.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/e_os.h b/e_os.h
index 4c39cb0238..7e63d0130c 100644
--- a/e_os.h
+++ b/e_os.h
@@ -403,7 +403,7 @@ extern HINSTANCE _hInstance;
#endif
#endif
-#if defined(sun) && !defined(__svr4__)
+#if defined(sun) && !defined(__svr4__) && !defined(__SVR4)
#define memmove(s1,s2,b) bcopy((s2),(s1),(n))
#define strtoul(s,e,b) ((unsigned long int)strtol((s),(e),(b)))
#endif