mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 19:43:32 +00:00
9 lines
189 B
C
9 lines
189 B
C
/*
|
|
* Random numbers
|
|
*/
|
|
|
|
#include "third_party/duktape/duk_internal.h"
|
|
|
|
DUK_EXTERNAL duk_double_t duk_random(duk_hthread *thr) {
|
|
return (duk_double_t) DUK_UTIL_GET_RANDOM_DOUBLE(thr);
|
|
}
|