]> git.proxmox.com Git - cargo.git/blobdiff - vendor/openssl-sys/src/rand.rs
New upstream version 0.33.0
[cargo.git] / vendor / openssl-sys / src / rand.rs
index 8ee46fbbccfc217b8bd22c0a6b2ab1b0eb930c2d..7380702dc4968a46c50656930cd2cde537c99cfe 100644 (file)
@@ -2,5 +2,9 @@ use libc::*;
 
 extern "C" {
     pub fn RAND_bytes(buf: *mut u8, num: c_int) -> c_int;
+
+    #[cfg(ossl111)]
+    pub fn RAND_keep_random_devices_open(keep: c_int);
+
     pub fn RAND_status() -> c_int;
 }