diff options
Diffstat (limited to 'systest/src/main.rs')
| -rw-r--r-- | systest/src/main.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/systest/src/main.rs b/systest/src/main.rs new file mode 100644 index 00000000..39d31b2f --- /dev/null +++ b/systest/src/main.rs @@ -0,0 +1,9 @@ +#![allow(bad_style)] + +extern crate openssl_sys; +extern crate libc; + +use libc::*; +use openssl_sys::*; + +include!(concat!(env!("OUT_DIR"), "/all.rs")); |