diff options
Diffstat (limited to 'vendor/openssl-sys/src/handwritten/conf.rs')
-rw-r--r-- | vendor/openssl-sys/src/handwritten/conf.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/vendor/openssl-sys/src/handwritten/conf.rs b/vendor/openssl-sys/src/handwritten/conf.rs new file mode 100644 index 0000000..2348d7d --- /dev/null +++ b/vendor/openssl-sys/src/handwritten/conf.rs @@ -0,0 +1,7 @@ +use super::super::*; + +extern "C" { + pub fn NCONF_new(meth: *mut CONF_METHOD) -> *mut CONF; + pub fn NCONF_default() -> *mut CONF_METHOD; + pub fn NCONF_free(conf: *mut CONF); +} |