Index: webkit/Source/WTF/wtf/MathExtras.h =================================================================== --- webkit.orig/Source/WTF/wtf/MathExtras.h +++ webkit/Source/WTF/wtf/MathExtras.h @@ -76,24 +76,6 @@ inline double wtf_ceil(double x) { retur #endif -#if OS(SOLARIS) - -namespace std { - -#ifndef isfinite -inline bool isfinite(double x) { return finite(x) && !isnand(x); } -#endif -#ifndef signbit -inline bool signbit(double x) { return copysign(1.0, x) < 0; } -#endif -#ifndef isinf -inline bool isinf(double x) { return !finite(x) && !isnand(x); } -#endif - -} // namespace std - -#endif - #if OS(OPENBSD) namespace std {