Fix MinGW-Bug [2160227]: Eliminate conflicting declarations and implementations of scalb().

This commit is contained in:
Keith Marshall
2008-10-13 22:47:58 +00:00
parent 5f9ca0d25a
commit 206473437f
3 changed files with 20 additions and 1 deletions

View File

@ -259,7 +259,14 @@ _CRTIMP double __cdecl y1 (double);
_CRTIMP double __cdecl yn (int, double);
_CRTIMP double __cdecl chgsign (double);
/*
* scalb() is a GCC built-in.
* Exclude this _scalb() stub; the semantics are incompatible
* with the built-in implementation.
*
_CRTIMP double __cdecl scalb (double, long);
*
*/
_CRTIMP int __cdecl finite (double);
_CRTIMP int __cdecl fpclass (double);