diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2002-04-17 19:10:37 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2002-04-17 19:10:37 +0000 |
commit | 84462018f37ada6ef190368f69f0997396e34d02 (patch) | |
tree | 7670034811cf9c72e8e1c596d7bb95dbbfaa660f /libgloss | |
parent | 99ad0c63ae85e6ea598476c8b67ee31ff92165ae (diff) | |
download | newlib-84462018f37ada6ef190368f69f0997396e34d02.zip newlib-84462018f37ada6ef190368f69f0997396e34d02.tar.gz newlib-84462018f37ada6ef190368f69f0997396e34d02.tar.bz2 |
2002-04-17 Joel Sherrill <joel@OARcorp.com>
* debug.h: Change mem_err to volatile to match definition in
debug.c.
Diffstat (limited to 'libgloss')
-rw-r--r-- | libgloss/ChangeLog | 7 | ||||
-rw-r--r-- | libgloss/debug.h | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog index e580b75..3970e5a 100644 --- a/libgloss/ChangeLog +++ b/libgloss/ChangeLog @@ -1,4 +1,9 @@ -2002-04-17 Joel Sherrill <joel@OARcorp.com> +2002-04-17 Joel Sherrill <joel@OARcorp.com> + + * debug.h: Change mem_err to volatile to match definition in + debug.c. + +2002-04-17 Joel Sherrill <joel@OARcorp.com> * sparc/cygmon-salib.c, sparc/erc32-stub.c: Don't use multi-line strings. diff --git a/libgloss/debug.h b/libgloss/debug.h index 9535341..9a78076 100644 --- a/libgloss/debug.h +++ b/libgloss/debug.h @@ -77,7 +77,7 @@ extern char *gdb_set(char *); /* Q - set value */ * indicate to caller of mem2hex or hex2mem that there has been an error. * 0 means ok, 1 means error */ -extern int mem_err; +extern volatile int mem_err; /* * indicate whether the debug vectors have been initialized |