diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2013-05-17 13:12:42 -0700 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2013-05-22 21:57:05 -0700 |
| commit | ebfc2b8e5671a8c56988e05f83c3b1eeaf2abb9a (patch) | |
| tree | b4553945a013ff16298a4f4efe9557d17faa1eb5 /src/libstd | |
| parent | 0c820d4123c754522b0655e9e74f692c55685bfa (diff) | |
| download | rust-ebfc2b8e5671a8c56988e05f83c3b1eeaf2abb9a.tar.gz rust-ebfc2b8e5671a8c56988e05f83c3b1eeaf2abb9a.zip | |
librustc: Rename core injection to std injection
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/core.rc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libstd/core.rc b/src/libstd/core.rc index 60093ff96bb..6f4890c7834 100644 --- a/src/libstd/core.rc +++ b/src/libstd/core.rc @@ -57,8 +57,9 @@ they contained the following prologue: #[crate_type = "lib"]; -// Don't link to core. We are core. -#[no_core]; +// Don't link to std. We are std. +#[no_core]; // for stage0 +#[no_std]; #[deny(non_camel_case_types)]; |
