Commit 8e9c3428 authored by Steven Fackler's avatar Steven Fackler
Browse files

Merge pull request #101 from vhbit/runtime-fallout

Runtime fallout
parents 33af6a0b 0cc749d3
Loading
Loading
Loading
Loading

openssl-sys/src/lib.rs

100644 → 100755
+2 −1
Original line number Diff line number Diff line
@@ -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;