Disable Alpha shadowing of malloc when using the C back end.
authorGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Wed, 27 Oct 1993 01:41:39 +0000 (01:41 +0000)
committerGuillermo J. Rozas <edu/mit/csail/zurich/gjr>
Wed, 27 Oct 1993 01:41:39 +0000 (01:41 +0000)
v7/src/microcode/config.h

index 6c4eba6439e729c09591f3022a32d287485ff6e1..69637604969818032b3ecc54ac28430d8a820238 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Id: config.h,v 9.81 1993/08/21 01:53:31 gjr Exp $
+$Id: config.h,v 9.82 1993/10/27 01:41:39 gjr Exp $
 
 Copyright (c) 1987-1993 Massachusetts Institute of Technology
 
@@ -513,7 +513,7 @@ extern unsigned long winnt_address_delta;
 /* #define HAS_FREXP */
 #define HAS_MODF
 
-#ifdef HAS_COMPILER_SUPPORT
+#if defined(HAS_COMPILER_SUPPORT) && !defined(NATIVE_CODE_IS_C)
 extern void * alpha_heap_malloc (long);
 #  define HEAP_MALLOC          alpha_heap_malloc
 #endif