12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- #ifndef _MATHIMPL_H_
- #define _MATHIMPL_H_
- #include "cdefs-compat.h"
- #include "math_private.h"
- #define TRUNC(d) (_b_trunc(&(d)))
- static __inline void
- _b_trunc(volatile double *_dp)
- {
-
-
- u_int32_t _lw;
- GET_LOW_WORD(_lw, *_dp);
- SET_LOW_WORD(*_dp, _lw & 0xf8000000);
- }
- struct Double {
- double a;
- double b;
- };
- double __exp__D(double, double);
- struct Double __log__D(double);
- #endif
|