diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2003-05-02 19:30:45 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2003-05-02 19:30:45 +0000 |
commit | c2ec76163e2dd327fd594876d3905e93ef979d15 (patch) | |
tree | 768816275085d9d6e559f40789dce9357140ab63 /libgloss/mips | |
parent | eba533fe591b16415b45a6211f2271baec22fba0 (diff) | |
download | newlib-c2ec76163e2dd327fd594876d3905e93ef979d15.zip newlib-c2ec76163e2dd327fd594876d3905e93ef979d15.tar.gz newlib-c2ec76163e2dd327fd594876d3905e93ef979d15.tar.bz2 |
2003-05-02 Eric Christopher <echristo@redhat.com>
* mips/cma101.c (__sizemem): Make sure that end is not in .sdata.
Diffstat (limited to 'libgloss/mips')
-rw-r--r-- | libgloss/mips/cma101.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgloss/mips/cma101.c b/libgloss/mips/cma101.c index 5456eaf..8e6c92b 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; |