From af463e7e1909666ef35e39fcf6939fb2fe1899b1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bodo=20M=C3=B6ller?= Date: Wed, 31 May 2000 16:42:47 +0000 Subject: [PATCH] When compiling with /opt/SUNWspro/SC4.2/bin/cc on Solaris, __svr4__ is not defined, but __SVR4 is. --- e_os.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.40.0