* include/math.h: Remove _CRTIMP from pow() prototype,

unless __NO_ISOCEXT.
This commit is contained in:
Danny Smith 2003-02-10 23:56:04 +00:00
parent 407b8df695
commit de8eec5609
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2003-02-10 Danny Smith <dannysmith@users.sourceforge.net>
* include/math.h: Remove _CRTIMP from pow() prototype,
unless __NO_ISOCEXT.
2003-02-10 Danny Smith <dannysmith@users.sourceforge.net>
* mingwex/math/cephes_emath.h: Don't redefine INFINITY.

View File

@ -159,7 +159,10 @@ _CRTIMP double __cdecl atan2 (double, double);
_CRTIMP double __cdecl exp (double);
_CRTIMP double __cdecl log (double);
_CRTIMP double __cdecl log10 (double);
_CRTIMP double __cdecl pow (double, double);
#ifdef __NO_ISOCEXT
_CRTIMP
#endif
double __cdecl pow (double, double);
_CRTIMP double __cdecl sqrt (double);
_CRTIMP double __cdecl ceil (double);
_CRTIMP double __cdecl floor (double);