mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-02 10:01:48 -07:00
13 lines
229 B
Odin
13 lines
229 B
Odin
package rand
|
|
|
|
foreign import "odin_env"
|
|
foreign odin_env {
|
|
@(link_name = "rand")
|
|
rand_f64 :: proc "contextless" () -> f64 ---
|
|
}
|
|
|
|
@(require_results)
|
|
_system_random :: proc() -> u64 {
|
|
return u64(rand_f64() * 0x1fffffffffffff)
|
|
}
|