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>2003-05-02 23:30:45 +0400
committerJeff Johnston <jjohnstn@redhat.com>2003-05-02 23:30:45 +0400
commitc2ec76163e2dd327fd594876d3905e93ef979d15 (patch)
tree768816275085d9d6e559f40789dce9357140ab63 /libgloss
parenteba533fe591b16415b45a6211f2271baec22fba0 (diff)
2003-05-02 Eric Christopher <echristo@redhat.com>
* mips/cma101.c (__sizemem): Make sure that end is not in .sdata.
Diffstat (limited to 'libgloss')
-rw-r--r--libgloss/ChangeLog4
-rw-r--r--libgloss/mips/cma101.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog
index cbf8d8dcf..ec8b36670 100644
--- a/libgloss/ChangeLog
+++ b/libgloss/ChangeLog
@@ -1,3 +1,7 @@
+2003-05-02 Eric Christopher <echristo@redhat.com>
+
+ * mips/cma101.c (__sizemem): Make sure that end is not in .sdata.
+
2003-04-29 Nick Clifton <nickc@redhat.com>
* libnosys/sbrk.c: Remove unnecessary #include's.
diff --git a/libgloss/mips/cma101.c b/libgloss/mips/cma101.c
index 5456eaf5a..8e6c92b34 100644
--- a/libgloss/mips/cma101.c
+++ b/libgloss/mips/cma101.c
@@ -189,7 +189,7 @@ __sizemem ()
volatile unsigned int *probe;
unsigned int baseorig;
unsigned int sr;
- extern void *end;
+ extern void end[];
char *endptr = (char *)&end;
int extra;