aboutsummaryrefslogtreecommitdiff
path: root/boehm-gc
diff options
context:
space:
mode:
authorAnthony Green <green@cygnus.com>2000-01-29 01:17:03 +0000
committerAnthony Green <green@cygnus.com>2000-01-29 01:17:03 +0000
commit61bb1c263cf5142c7025a94a0ceb088a0b9450bb (patch)
treec7f40026bc5123bd2d484dabd9298b066b2ed7fe /boehm-gc
parent7a8ba86144ea396521dd23677742d7849893300e (diff)
* gcconfig.h (DATASTART): Add missing extern declaration
for data_start on powerpc. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@31677 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'boehm-gc')
-rw-r--r--boehm-gc/ChangeLog5
-rw-r--r--boehm-gc/gcconfig.h1
2 files changed, 6 insertions, 0 deletions
diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog
index 5e39dd05778..180f111067f 100644
--- a/boehm-gc/ChangeLog
+++ b/boehm-gc/ChangeLog
@@ -1,3 +1,8 @@
+Fri Jan 28 17:13:20 2000 Anthony Green <green@cygnus.com>
+
+ * gcconfig.h (DATASTART): Add missing extern declaration
+ for data_start on powerpc.
+
1999-12-22 Bryce McKinlay <bryce@albatross.co.nz>
* linux_threads.c: Don't block SIGINT, SIGQUIT, SIGTERM in the
diff --git a/boehm-gc/gcconfig.h b/boehm-gc/gcconfig.h
index 9451aab3770..25178d095ec 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)