]> granicus.if.org Git - postgresql/commitdiff
Fix c.h for sparc_solaris
authorMarc G. Fournier <scrappy@hub.org>
Tue, 5 Nov 1996 05:28:20 +0000 (05:28 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Tue, 5 Nov 1996 05:28:20 +0000 (05:28 +0000)
Pointed out by Keith Parks

src/include/c.h

index f505f392a4b9a7311992018b9a76d3accda9a25a..e4cac489128619710912b078d298d00acea1b582 100644 (file)
@@ -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