Fix identation
This commit is contained in:
parent
a74a04f356
commit
8a75817707
1 changed files with 1 additions and 1 deletions
|
|
@ -6,7 +6,7 @@ extern crate libc;
|
|||
fn main() {
|
||||
let mut buf = [0u8; 5];
|
||||
unsafe {
|
||||
assert_eq!(libc::syscall(libc::SYS_getrandom, 0 as *mut libc::c_void, 0 as libc::size_t, 0 as libc::c_uint), 0);
|
||||
assert_eq!(libc::syscall(libc::SYS_getrandom, 0 as *mut libc::c_void, 0 as libc::size_t, 0 as libc::c_uint), 0);
|
||||
assert_eq!(libc::syscall(libc::SYS_getrandom, buf.as_mut_ptr() as *mut libc::c_void, 5 as libc::size_t, 0 as libc::c_uint), 5);
|
||||
|
||||
assert_eq!(libc::getrandom(0 as *mut libc::c_void, 0 as libc::size_t, 0 as libc::c_uint), 0);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue