From: Guillermo J. Rozas Date: Fri, 20 Oct 1989 04:44:00 +0000 (+0000) Subject: Remove static keyword from the declaration of memory_base. GCC does X-Git-Tag: 20090517-FFI~11753 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=355ba99b8a1d02a1f42ef25ca5a213e52470a401;p=mit-scheme.git 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. --- 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