diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-11-05 05:28:20 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-11-05 05:28:20 +0000 |
commit | abf578ac6c286abdd34dd4a4f1d1254b0faee968 (patch) | |
tree | e1be169b9a8b09001348103e9b27677bb364f2c4 /src | |
parent | fd569a23085e60daee17292bca9f4ade26ddb8e0 (diff) | |
download | postgresql-abf578ac6c286abdd34dd4a4f1d1254b0faee968.tar.gz postgresql-abf578ac6c286abdd34dd4a4f1d1254b0faee968.zip |
Fix c.h for sparc_solaris
Pointed out by Keith Parks
Diffstat (limited to 'src')
-rw-r--r-- | src/include/c.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/c.h b/src/include/c.h index f505f392a4b..e4cac489128 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -7,7 +7,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: c.h,v 1.2 1996/11/04 04:00:19 momjian Exp $ + * $Id: c.h,v 1.3 1996/11/05 05:28:20 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -741,7 +741,7 @@ extern char *form(char *fmt, ...); #include "port/hpux/fixade.h" /* for 8.07 unaligned access fixup */ #endif /* hpux */ -#if defined(sparc) +#if defined(sparc) && !defined(sparc_solaris) #define memmove(d, s, l) bcopy(s, d, l) #endif |