File tree 1 file changed +7
-9
lines changed
1 file changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -62,18 +62,15 @@ mod imp {
62
62
unsafe { getrandom ( buf. as_mut_ptr ( ) . cast ( ) , buf. len ( ) , libc:: GRND_NONBLOCK ) }
63
63
}
64
64
65
- #[ cfg( any( target_os = "espidf" , target_os = "horizon" ) ) ]
65
+ #[ cfg( any( target_os = "espidf" , target_os = "horizon" , target_os = "freebsd" ) ) ]
66
66
fn getrandom ( buf : & mut [ u8 ] ) -> libc:: ssize_t {
67
- unsafe { libc:: getrandom ( buf. as_mut_ptr ( ) . cast ( ) , buf. len ( ) , 0 ) }
68
- }
69
-
70
- #[ cfg( target_os = "freebsd" ) ]
71
- fn getrandom ( buf : & mut [ u8 ] ) -> libc:: ssize_t {
72
- // FIXME: using the above when libary std's libc is updated
67
+ #[ cfg( not( target_os = "freebsd" ) ) ]
68
+ use libc:: getrandom;
69
+ #[ cfg( target_os = "freebsd" ) ]
73
70
extern "C" {
74
71
fn getrandom (
75
- buffer : * mut libc:: c_void ,
76
- length : libc:: size_t ,
72
+ buf : * mut libc:: c_void ,
73
+ buflen : libc:: size_t ,
77
74
flags : libc:: c_uint ,
78
75
) -> libc:: ssize_t ;
79
76
}
@@ -236,6 +233,7 @@ mod imp {
236
233
}
237
234
}
238
235
236
+ // FIXME: once the 10.x release becomes the minimum, this can be dropped for simplification.
239
237
#[ cfg( target_os = "netbsd" ) ]
240
238
mod imp {
241
239
use crate :: ptr;
You can’t perform that action at this time.
0 commit comments