Convert 'import' to 'use'. Remove 'import' keyword.

This commit is contained in:
Brian Anderson
2012-09-07 18:08:21 -07:00
parent 1a8a0a77b1
commit 298eb8c726
78 changed files with 192 additions and 232 deletions

View File

@@ -138,7 +138,7 @@ unsafe fn ptr<T>(t: CVec<T>) -> *mut T {
#[cfg(test)]
mod tests {
import libc::*;
use libc::*;
fn malloc(n: size_t) -> CVec<u8> {
let mem = libc::malloc(n);