1
0
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:
Tom Lane
1998-11-30 00:30:05 +00:00
parent b10a719777
commit 19740e2fff
4 changed files with 11 additions and 4 deletions

View File

@ -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