1
Fork 0

Fix warnings when compiling stdlib with --test

This commit is contained in:
Florian Hahn 2015-12-18 13:29:49 +01:00
parent 27a1834ce5
commit e27cbeff37
26 changed files with 81 additions and 75 deletions

View file

@ -45,7 +45,7 @@ pub mod thread_local;
pub mod time;
pub mod stdio;
#[cfg(not(target_os = "nacl"))]
#[cfg(not(any(target_os = "nacl", test)))]
pub fn init() {
use libc::signal;
// By default, some platforms will send a *signal* when an EPIPE error
@ -59,7 +59,8 @@ pub fn init() {
assert!(signal(libc::SIGPIPE, libc::SIG_IGN) != !0);
}
}
#[cfg(target_os = "nacl")]
#[cfg(all(target_os = "nacl", not(test)))]
pub fn init() { }
pub fn decode_error_kind(errno: i32) -> ErrorKind {