Merge pull request #101 from vhbit/runtime-fallout

Runtime fallout
This commit is contained in:
Steven Fackler 2014-11-21 11:17:19 -05:00
commit 8e9c34280d
1 changed files with 2 additions and 1 deletions

3
openssl-sys/src/lib.rs Normal file → Executable file
View File

@ -2,12 +2,13 @@
#![allow(dead_code)]
extern crate libc;
extern crate rustrt;
extern crate sync;
use libc::{c_void, c_int, c_char, c_ulong, c_long, c_uint, c_uchar, size_t};
use std::mem;
use std::ptr;
use std::rt::mutex::NativeMutex;
use rustrt::mutex::NativeMutex;
use sync::one::{Once, ONCE_INIT};
pub type ASN1_INTEGER = c_void;