Bug 222056 Integrate warning fix from Adobe for e_pow.c and e_sqrt.c

Patch by Adobe rs=brendan
This commit is contained in:
timeless%mozdev.org 2003-11-07 19:46:29 +00:00
Родитель 71148401bd
Коммит dfcf4ec283
2 изменённых файлов: 10 добавлений и 0 удалений

Просмотреть файл

@ -91,6 +91,11 @@
#include "fdlibm.h"
#if defined(_MSC_VER)
/* Microsoft Compiler */
#pragma warning( disable : 4723 ) /* disables potential divide by 0 warning */
#endif
#ifdef __STDC__
static const double
#else

Просмотреть файл

@ -115,6 +115,11 @@
#include "fdlibm.h"
#if defined(_MSC_VER)
/* Microsoft Compiler */
#pragma warning( disable : 4723 ) /* disables potential divide by 0 warning */
#endif
#ifdef __STDC__
static const double one = 1.0, tiny=1.0e-300;
#else