Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 431560 | Differences between
and this patch

Collapse All | Expand All

(-)js/src/jsnum.h (+2 lines)
Lines 97-102 Link Here
97
{
97
{
98
#ifdef WIN32
98
#ifdef WIN32
99
    return _finite(d);
99
    return _finite(d);
100
#elif defined(__UCLIBC__)
101
    return isfinite(d);
100
#else
102
#else
101
    return finite(d);
103
    return finite(d);
102
#endif
104
#endif

Return to bug 431560