From 355ba99b8a1d02a1f42ef25ca5a213e52470a401 Mon Sep 17 00:00:00 2001 From: "Guillermo J. Rozas" Date: Fri, 20 Oct 1989 04:44:00 +0000 Subject: [PATCH] Remove static keyword from the declaration of memory_base. GCC does not like something to be declared both extern and static, and it is declared extern in object.h, included here. --- v7/src/microcode/psbmap.h | 4 ++-- v8/src/microcode/psbmap.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/v7/src/microcode/psbmap.h b/v7/src/microcode/psbmap.h index 2efc229ff..6390b0615 100644 --- a/v7/src/microcode/psbmap.h +++ b/v7/src/microcode/psbmap.h @@ -1,6 +1,6 @@ /* -*-C-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/Attic/psbmap.h,v 9.30 1989/09/22 08:45:36 cph Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/microcode/Attic/psbmap.h,v 9.31 1989/10/20 04:44:00 jinx Exp $ Copyright (c) 1987, 1988, 1989 Massachusetts Institute of Technology @@ -133,7 +133,7 @@ static Boolean nmv_p = false; /* Global data */ #ifndef Heap_In_Low_Memory -static SCHEME_OBJECT * memory_base; +SCHEME_OBJECT * memory_base; #endif static long diff --git a/v8/src/microcode/psbmap.h b/v8/src/microcode/psbmap.h index 05a097f99..1d698b575 100644 --- a/v8/src/microcode/psbmap.h +++ b/v8/src/microcode/psbmap.h @@ -1,6 +1,6 @@ /* -*-C-*- -$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/microcode/psbmap.h,v 9.30 1989/09/22 08:45:36 cph Exp $ +$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v8/src/microcode/psbmap.h,v 9.31 1989/10/20 04:44:00 jinx Exp $ Copyright (c) 1987, 1988, 1989 Massachusetts Institute of Technology @@ -133,7 +133,7 @@ static Boolean nmv_p = false; /* Global data */ #ifndef Heap_In_Low_Memory -static SCHEME_OBJECT * memory_base; +SCHEME_OBJECT * memory_base; #endif static long -- 2.25.1