Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2015-08-07 21:43:38 +0300
committerJeff Johnston <jjohnstn@redhat.com>2015-08-07 22:01:50 +0300
commit0d04c03829f9b88b86c5a47b340731a4cb39fdcb (patch)
tree007234ad2c39218f53c3c6eaff46d4fc103c3360 /libgloss/or1k
parent49380b7ee362970ac6b553335968e74bc1186e0d (diff)
or1k: Make heap end globally visible
Boards may change the initial value from _end to another value. * or1k/sbrk.c: Make heap end globally visible
Diffstat (limited to 'libgloss/or1k')
-rw-r--r--libgloss/or1k/sbrk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgloss/or1k/sbrk.c b/libgloss/or1k/sbrk.c
index 5bd7044f7..0c3e66e87 100644
--- a/libgloss/or1k/sbrk.c
+++ b/libgloss/or1k/sbrk.c
@@ -21,7 +21,7 @@
extern uint32_t end; /* Set by linker. */
uint32_t _or1k_heap_start = &end;
-static uint32_t _or1k_heap_end;
+uint32_t _or1k_heap_end;
void *
_sbrk_r (struct _reent * reent, ptrdiff_t incr)