mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
169 B
9 lines
169 B
/*
|
|
* Random numbers
|
|
*/
|
|
|
|
#include "duk_internal.h"
|
|
|
|
DUK_EXTERNAL duk_double_t duk_random(duk_hthread *thr) {
|
|
return (duk_double_t) DUK_UTIL_GET_RANDOM_DOUBLE(thr);
|
|
}
|
|
|