Runtime fallout

This commit is contained in:
Valerii Hiora 2014-11-21 11:57:48 +02:00
parent 33af6a0b7a
commit 0cc749d3fc
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)] #![allow(dead_code)]
extern crate libc; extern crate libc;
extern crate rustrt;
extern crate sync; extern crate sync;
use libc::{c_void, c_int, c_char, c_ulong, c_long, c_uint, c_uchar, size_t}; use libc::{c_void, c_int, c_char, c_ulong, c_long, c_uint, c_uchar, size_t};
use std::mem; use std::mem;
use std::ptr; use std::ptr;
use std::rt::mutex::NativeMutex; use rustrt::mutex::NativeMutex;
use sync::one::{Once, ONCE_INIT}; use sync::one::{Once, ONCE_INIT};
pub type ASN1_INTEGER = c_void; pub type ASN1_INTEGER = c_void;