Register new snapshots
This commit is contained in:
parent
c83afb9719
commit
c3ea3e439f
74 changed files with 194 additions and 208 deletions
|
@ -9,7 +9,7 @@
|
|||
// except according to those terms.
|
||||
|
||||
#![feature(globs)]
|
||||
#![crate_id = "libc#0.10-pre"]
|
||||
#![crate_id = "libc#0.11-pre"]
|
||||
#![experimental]
|
||||
#![no_std] // we don't need std, and we can't have std, since it doesn't exist
|
||||
// yet. std depends on us.
|
||||
|
@ -75,8 +75,6 @@
|
|||
#![allow(missing_doc)]
|
||||
#![allow(uppercase_variables)]
|
||||
|
||||
#![feature(link_args)] // NOTE: remove after stage0
|
||||
|
||||
#[cfg(test)] extern crate std;
|
||||
#[cfg(test)] extern crate test;
|
||||
#[cfg(test)] extern crate native;
|
||||
|
@ -199,11 +197,6 @@ pub use funcs::posix88::unistd::{rmdir, unlink, write};
|
|||
#[link(name = "m")]
|
||||
extern {}
|
||||
|
||||
// NOTE: remove this after a stage0 snap
|
||||
#[cfg(stage0, windows)]
|
||||
#[link_args = "-Wl,--enable-long-section-names"]
|
||||
extern {}
|
||||
|
||||
/// A wrapper for a nullable pointer. Don't use this except for interacting
|
||||
/// with libc. Basically Option, but without the dependance on libstd.
|
||||
// If/when libprim happens, this can be removed in favor of that
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue