Merge pull request #5 from zr40/sync-crate

extra::sync was moved to sync crate
This commit is contained in:
Steven Fackler 2014-02-06 11:28:32 -08:00
commit 490e518c6d
2 changed files with 2 additions and 1 deletions

1
lib.rs
View File

@ -4,6 +4,7 @@
#[doc(html_root_url="http://www.rust-ci.org/sfackler/rust-openssl/doc")];
extern mod extra;
extern mod sync;
pub mod ssl;
pub mod crypto;

View File

@ -1,4 +1,4 @@
use extra::sync::one::{Once, ONCE_INIT};
use sync::one::{Once, ONCE_INIT};
use std::cast;
use std::libc::{c_int, c_void, c_char};
use std::ptr;