Use random instead _unix_random on non-Unix systems. #2

Merged
n3tael merged 1 commits from :master into master 2024-02-08 18:47:17 +00:00

View File

@ -132,6 +132,9 @@ pub fn execute(stack: &mut Stack, mut origin_stack: Option<&mut Stack>, mod_name
#[cfg(target_family = "unix")] #[cfg(target_family = "unix")]
"_unix_random" => instructions::_unix_random::_unix_random(&mut stack.memory), "_unix_random" => instructions::_unix_random::_unix_random(&mut stack.memory),
#[cfg(not(target_family = "unix"))]
"_unix_random" => instructions::random::random(&mut stack.memory),
// Labast-specific // Labast-specific
"random" => instructions::random::random(&mut stack.memory), "random" => instructions::random::random(&mut stack.memory),
@ -141,4 +144,4 @@ pub fn execute(stack: &mut Stack, mut origin_stack: Option<&mut Stack>, mod_name
} }
} }
} }
} }