librustc: Remove pub extern and priv extern from the language.

Place `pub` or `priv` on individual items instead.
This commit is contained in:
Patrick Walton 2013-07-18 19:08:57 -07:00
parent bb8ca1f52c
commit 06594ed96b
85 changed files with 818 additions and 694 deletions

View file

@ -23,7 +23,7 @@ use std::task;
mod rustrt {
use std::libc;
pub extern {
extern {
pub fn rust_get_argc() -> libc::c_int;
}
}