diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2002-06-24 20:03:38 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2002-06-24 20:03:38 +0000 |
commit | a70486d79003622adf4b607344bc54b032393fc3 (patch) | |
tree | a0fbab890b9fd24b0cfdffa35f142f20c72d51e4 /newlib/libc/include/math.h | |
parent | ced6a5288b05ceffc94025563e2afcd68d3f1bda (diff) | |
download | cygnal-a70486d79003622adf4b607344bc54b032393fc3.tar.gz cygnal-a70486d79003622adf4b607344bc54b032393fc3.tar.bz2 cygnal-a70486d79003622adf4b607344bc54b032393fc3.zip |
2002-06-24 Jeff Johnston <jjohnstn@redhat.com>
* libc/include/math.h: Remove <sys/types.h>.
(__dmath): Use __ULong instead of _uint32_t.
* libc/include/sys/reent.h: If long or int is not 32-bits,
include <sys/types.h> to get definitions for _int32_t and _uint32_t.
* libc/stdlib/mprec.h: Include <sys/types.h> to get integer defs.
* libm/common/fdlibm.h: Ditto.
Diffstat (limited to 'newlib/libc/include/math.h')
-rw-r--r-- | newlib/libc/include/math.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/newlib/libc/include/math.h b/newlib/libc/include/math.h index 817e81183..c0a743d0f 100644 --- a/newlib/libc/include/math.h +++ b/newlib/libc/include/math.h @@ -7,7 +7,6 @@ extern "C" { #define _MATH_H_ #include <sys/reent.h> -#include <sys/types.h> #include <machine/ieeefp.h> #include "_ansi.h" @@ -18,7 +17,7 @@ extern "C" { union __dmath { - __uint32_t i[2]; + __ULong i[2]; double d; }; |