Changeset 2058 for trunk/src/emx/include/math.h
- Timestamp:
- Jun 23, 2005, 7:58:05 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/math.h
-
Property cvs2svn:cvs-rev
changed from
1.7
to1.8
r2057 r2058 97 97 : (sizeof (x) == sizeof (double)) ? __isfinite(x) \ 98 98 : __isfinitel(x)) 99 #ifdef IN_INNOTEK_LIBC 100 #undef isinf 101 #define isinf(x) \ 102 ((sizeof (x) == sizeof (float)) ? __isinff(x) \ 103 : (sizeof (x) == sizeof (double)) ? _STD(isinf)(x) \ 104 : __isinfl(x)) 105 #undef isnan 106 #define isnan(x) \ 107 ((sizeof (x) == sizeof (float)) ? isnanf(x) \ 108 : (sizeof (x) == sizeof (double)) ? _STD(isnan)(x) \ 109 : __isnanl(x)) 110 #else 99 111 #define isinf(x) \ 100 112 ((sizeof (x) == sizeof (float)) ? __isinff(x) \ … … 105 117 : (sizeof (x) == sizeof (double)) ? isnan(x) \ 106 118 : __isnanl(x)) 119 #endif 107 120 #define isnormal(x) \ 108 121 ((sizeof (x) == sizeof (float)) ? __isnormalf(x) \ … … 234 247 double hypot(double, double); 235 248 int ilogb(double) __pure2; 249 #ifdef IN_INNOTEK_LIBC 250 int _STD(isinf)(double) __pure2; 251 int _STD(isnan)(double) __pure2; 252 #else 236 253 int (isinf)(double) __pure2; 237 254 int (isnan)(double) __pure2; 255 #endif 238 256 double lgamma(double); 239 257 long long llrint(double); -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.