Additional libc cleanup
This commit is contained in:
parent
7f054990b6
commit
7a8d38e522
3 changed files with 5 additions and 2 deletions
|
@ -20,7 +20,7 @@
|
|||
#![deny(warnings)]
|
||||
|
||||
#![feature(box_syntax)]
|
||||
#![feature(libc)]
|
||||
#![cfg_attr(unix, feature(libc))]
|
||||
#![feature(quote)]
|
||||
#![feature(rustc_diagnostic_macros)]
|
||||
#![feature(set_stdio)]
|
||||
|
@ -29,6 +29,7 @@ extern crate arena;
|
|||
extern crate getopts;
|
||||
extern crate graphviz;
|
||||
extern crate env_logger;
|
||||
#[cfg(unix)]
|
||||
extern crate libc;
|
||||
extern crate rustc;
|
||||
extern crate rustc_allocator;
|
||||
|
|
|
@ -16,10 +16,11 @@
|
|||
#![feature(custom_attribute)]
|
||||
#![allow(unused_attributes)]
|
||||
#![feature(range_contains)]
|
||||
#![feature(libc)]
|
||||
#![cfg_attr(unix, feature(libc))]
|
||||
#![feature(conservative_impl_trait)]
|
||||
|
||||
extern crate term;
|
||||
#[cfg(unix)]
|
||||
extern crate libc;
|
||||
extern crate serialize as rustc_serialize;
|
||||
extern crate syntax_pos;
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
|
||||
#![deny(warnings)]
|
||||
|
||||
#[cfg(any(target_os = "macos", target_os = "ios"))]
|
||||
extern crate libc;
|
||||
extern crate test;
|
||||
extern crate getopts;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue