Skip to content

Commit 1814ee0

Browse files
committed
Merge pull request #1 from mokus0/nightly-updates
Fixes for rust nightly change to behavior of no_std
2 parents 0acbe22 + e2c8610 commit 1814ee0

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/lib.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,12 @@
2121
//! the system libc library.
2222
2323
#![no_std]
24-
#![feature(no_std, core)]
24+
#![feature(no_std)]
2525

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

30-
extern crate core;
31-
3230
#[cfg(test)] #[macro_use] extern crate std;
3331

3432
#[no_mangle]

0 commit comments

Comments
 (0)