Skip to content
Snippets Groups Projects
Commit af463e7e authored by Bodo Möller's avatar Bodo Möller
Browse files

When compiling with /opt/SUNWspro/SC4.2/bin/cc on Solaris, __svr4__ is

not defined, but __SVR4 is.
parent 01296a6d
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment