mirror of
https://github.com/openssl/openssl.git
synced 2025-01-19 00:13:33 +08:00
Comment about bcopy on SunOS 4.x.
This commit is contained in:
parent
ef33b97050
commit
b908bd4e15
3
e_os.h
3
e_os.h
@ -404,10 +404,11 @@ extern HINSTANCE _hInstance;
|
||||
#endif
|
||||
|
||||
#if defined(sun) && !defined(__svr4__) && !defined(__SVR4)
|
||||
/* bcopy can handle overlapping moves according to SunOS 4.1.4 manpage */
|
||||
# define memmove(s1,s2,n) bcopy((s2),(s1),(n))
|
||||
# define strtoul(s,e,b) ((unsigned long int)strtol((s),(e),(b)))
|
||||
extern char *sys_errlist[]; extern int sys_nerr;
|
||||
# define strerror(errnum) \
|
||||
# define strerror(errnum) \
|
||||
(((errnum)<0 || (errnum)>=sys_nerr) ? NULL : sys_errlist[errnum])
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user