From 376e9b3d7c9d968e50658c968f7589bb26f81fd4 Mon Sep 17 00:00:00 2001 From: "Guillermo J. Rozas" Date: Wed, 27 Oct 1993 01:41:39 +0000 Subject: [PATCH] Disable Alpha shadowing of malloc when using the C back end. --- v7/src/microcode/config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.25.1