From 72af8e4e63da81d09ed612c5024c3aadfe1cd077 Mon Sep 17 00:00:00 2001 From: Anthony Green Date: Sat, 29 Jan 2000 01:17:03 +0000 Subject: [PATCH] gcconfig.h (DATASTART): Add missing extern declaration for data_start on powerpc. * gcconfig.h (DATASTART): Add missing extern declaration for data_start on powerpc. From-SVN: r31677 --- boehm-gc/ChangeLog | 5 +++++ boehm-gc/gcconfig.h | 1 + 2 files changed, 6 insertions(+) diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog index 5e39dd057788..180f111067f9 100644 --- a/boehm-gc/ChangeLog +++ b/boehm-gc/ChangeLog @@ -1,3 +1,8 @@ +Fri Jan 28 17:13:20 2000 Anthony Green + + * gcconfig.h (DATASTART): Add missing extern declaration + for data_start on powerpc. + 1999-12-22 Bryce McKinlay * linux_threads.c: Don't block SIGINT, SIGQUIT, SIGTERM in the diff --git a/boehm-gc/gcconfig.h b/boehm-gc/gcconfig.h index 9451aab37703..25178d095ecb 100644 --- a/boehm-gc/gcconfig.h +++ b/boehm-gc/gcconfig.h @@ -532,6 +532,7 @@ # undef STACK_GRAN # define STACK_GRAN 0x10000000 /* Stack usually starts at 0x80000000 */ + extern int data_start; # define DATASTART (&data_start) extern int _end; # define DATAEND (&_end)