From a0aa2307322cd47bbf416810ac0292925e03be87 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 19:39:49 +0200 Subject: Adding upstream version 1:7.0.3. Signed-off-by: Daniel Baumann --- rust/vendor/getrandom/src/3ds.rs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 rust/vendor/getrandom/src/3ds.rs (limited to 'rust/vendor/getrandom/src/3ds.rs') diff --git a/rust/vendor/getrandom/src/3ds.rs b/rust/vendor/getrandom/src/3ds.rs new file mode 100644 index 0000000..87a32a1 --- /dev/null +++ b/rust/vendor/getrandom/src/3ds.rs @@ -0,0 +1,18 @@ +// Copyright 2021 Developers of the Rand project. +// +// Licensed under the Apache License, Version 2.0 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +//! Implementation for Nintendo 3DS +use crate::util_libc::sys_fill_exact; +use crate::Error; +use core::mem::MaybeUninit; + +pub fn getrandom_inner(dest: &mut [MaybeUninit]) -> Result<(), Error> { + sys_fill_exact(dest, |buf| unsafe { + libc::getrandom(buf.as_mut_ptr() as *mut libc::c_void, buf.len(), 0) + }) +} -- cgit v1.2.3