Auto merge of #27267 - tamird:fix-ios-improper-ctypes, r=alexcrichton
Fixes #27263.
This commit is contained in:
commit
6d36798c89
@ -185,7 +185,7 @@ mod imp {
|
||||
use io;
|
||||
use mem;
|
||||
use rand::Rng;
|
||||
use libc::{c_int, size_t};
|
||||
use libc::{c_int, c_void, size_t};
|
||||
|
||||
/// A random number generator that retrieves randomness straight from
|
||||
/// the operating system. Platform sources:
|
||||
@ -203,8 +203,9 @@ mod imp {
|
||||
_dummy: (),
|
||||
}
|
||||
|
||||
#[repr(C)]
|
||||
struct SecRandom;
|
||||
// Fake definition; this is actually a struct, but we don't use the
|
||||
// contents here.
|
||||
type SecRandom = c_void;
|
||||
|
||||
#[allow(non_upper_case_globals)]
|
||||
const kSecRandomDefault: *const SecRandom = 0 as *const SecRandom;
|
||||
|
Loading…
x
Reference in New Issue
Block a user