From: Guillermo J. Rozas <edu/mit/csail/zurich/gjr> Date: Wed, 27 Oct 1993 01:41:39 +0000 (+0000) Subject: Disable Alpha shadowing of malloc when using the C back end. X-Git-Tag: 20090517-FFI~7677 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=376e9b3d7c9d968e50658c968f7589bb26f81fd4;p=mit-scheme.git Disable Alpha shadowing of malloc when using the C back end. --- diff --git a/v7/src/microcode/config.h b/v7/src/microcode/config.h index 6c4eba643..696376049 100644 --- a/v7/src/microcode/config.h +++ b/v7/src/microcode/config.h @@ -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