Update for API change

This commit is contained in:
Steven Fackler 2013-12-27 07:48:26 -07:00
parent 213adb3432
commit 7db74d5b4f
1 changed files with 2 additions and 2 deletions

4
lib.rs
View File

@ -6,8 +6,8 @@ use std::cast;
use std::libc::{c_int, c_void, c_char}; use std::libc::{c_int, c_void, c_char};
use std::ptr; use std::ptr;
use std::task; use std::task;
use std::unstable::atomics::{AtomicBool, INIT_ATOMIC_BOOL, AtomicUint, use std::sync::atomics::{AtomicBool, INIT_ATOMIC_BOOL, AtomicUint,
INIT_ATOMIC_UINT, Acquire, Release, SeqCst}; INIT_ATOMIC_UINT, Acquire, Release, SeqCst};
use std::unstable::mutex::Mutex; use std::unstable::mutex::Mutex;
use std::io::{Stream, Reader, Writer, Decorator}; use std::io::{Stream, Reader, Writer, Decorator};
use std::vec; use std::vec;