mirror of
https://github.com/postgres/postgres.git
synced 2025-07-02 09:02:37 +03:00
Portability fixes found needed for SunOS 4.1.x:
SunOS has tas(), but not memmove or strerror, and its sprintf() doesn't return int. Also, older versions of GNU Make don't like rules with empty left-hand sides...
This commit is contained in:
@ -58,6 +58,6 @@ typedef unsigned char uch;
|
||||
#endif
|
||||
|
||||
/* for old systems with bcopy() but no memmove() */
|
||||
#if !defined(HAVE_MEMMOVE)
|
||||
#if !defined(HAVE_MEMMOVE) && !defined(memmove)
|
||||
#define memmove(d, s, c) bcopy(s, d, c)
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user