mirror of
https://github.com/sgmarz/osblog.git
synced 2024-11-28 04:13:31 +04:00
8 lines
146 B
Rust
8 lines
146 B
Rust
|
// rng.rs
|
||
|
// Random number generator using VirtIO
|
||
|
// Stephen Marz
|
||
|
// 16 March 2020
|
||
|
|
||
|
pub fn setup_entropy_device(_ptr: *mut u32) -> bool {
|
||
|
false
|
||
|
}
|