summaryrefslogtreecommitdiffstats
path: root/vendor/openssl-sys/src/handwritten/conf.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/openssl-sys/src/handwritten/conf.rs')
-rw-r--r--vendor/openssl-sys/src/handwritten/conf.rs7
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 000000000..2348d7d4c
--- /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);
+}