1
Fork 0

libstd: "import" -> "use"

This commit is contained in:
Patrick Walton 2012-09-04 11:23:53 -07:00
parent 437073868e
commit 2d690ae43f
32 changed files with 125 additions and 134 deletions

View file

@ -6,11 +6,10 @@
* between tasks.
*/
import unsafe::{SharedMutableState, shared_mutable_state,
use unsafe::{SharedMutableState, shared_mutable_state,
clone_shared_mutable_state, unwrap_shared_mutable_state,
get_shared_mutable_state, get_shared_immutable_state};
import sync;
import sync::{Mutex, mutex_with_condvars,
use sync::{Mutex, mutex_with_condvars,
RWlock, rwlock_with_condvars};
export ARC, clone, get;