summaryrefslogtreecommitdiff
path: root/Libraries
diff options
context:
space:
mode:
Diffstat (limited to 'Libraries')
-rw-r--r--Libraries/LibJS/Runtime/MathObject.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/Libraries/LibJS/Runtime/MathObject.cpp b/Libraries/LibJS/Runtime/MathObject.cpp
index 4c2e3764fb..076715b91a 100644
--- a/Libraries/LibJS/Runtime/MathObject.cpp
+++ b/Libraries/LibJS/Runtime/MathObject.cpp
@@ -24,8 +24,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include <AK/Function.h>
#include <AK/FlyString.h>
+#include <AK/Function.h>
#include <LibJS/Runtime/MathObject.h>
namespace JS {
@@ -33,7 +33,11 @@ namespace JS {
MathObject::MathObject()
{
put_native_function("random", [](Object*, const Vector<Value>&) {
+#ifdef __serenity__
double r = (double)arc4random() / (double)UINT32_MAX;
+#else
+ double r = (double)rand() / (double)RAND_MAX;
+#endif
return Value(r);
});
}