diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2001-01-24 00:12:44 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2001-01-24 00:12:44 +0000 |
commit | 3643210e24cc5ed167f2b76ac1755451b9c645e6 (patch) | |
tree | 6e87e054929fa9e941fd4f4cc164d259c4864733 /newlib/libc/include | |
parent | 841081c9f2b3f3e8644452ca852c4e363f6becff (diff) | |
download | cygnal-3643210e24cc5ed167f2b76ac1755451b9c645e6.tar.gz cygnal-3643210e24cc5ed167f2b76ac1755451b9c645e6.tar.bz2 cygnal-3643210e24cc5ed167f2b76ac1755451b9c645e6.zip |
2001-01-23 Jeff Johnston <jjohnstn@redhat.com>
* libc/include/math.h (signgam): Regress previous fix as
it does not handle programs with extern int signgam in them.
Diffstat (limited to 'newlib/libc/include')
-rw-r--r-- | newlib/libc/include/math.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/include/math.h b/newlib/libc/include/math.h index fe57b1b58..f092aff19 100644 --- a/newlib/libc/include/math.h +++ b/newlib/libc/include/math.h @@ -186,7 +186,7 @@ extern float dremf _PARAMS((float, float)); /* The gamma functions use a global variable, signgam. */ -#define signgam (_impure_ptr->_new._reent._gamma_signgam) +extern __IMPORT int signgam; /* The exception structure passed to the matherr routine. */ |