Skip to content

Commit

Permalink
Fixes for rust nightly change to behavior of no_std[1]
Browse files Browse the repository at this point in the history
  • Loading branch information
mokus0 committed Aug 16, 2015
1 parent 0acbe22 commit e2c8610
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,12 @@
//! the system libc library.
#![no_std]
#![feature(no_std, core)]
#![feature(no_std)]

// This library defines the builtin functions, so it would be a shame for
// LLVM to optimize these function calls to themselves!
#![no_builtins]

extern crate core;

#[cfg(test)] #[macro_use] extern crate std;

#[no_mangle]
Expand Down

0 comments on commit e2c8610

Please sign in to comment.