aports/unmaintained/js/isfinite.patch
2014-10-24 10:01:56 +00:00

12 lines
159 B
Diff

--- ./jsnum.h.orig
+++ ./jsnum.h
@@ -101,7 +101,7 @@
#ifdef WIN32
return _finite(d);
#else
- return finite(d);
+ return isfinite(d);
#endif
}