2018-08-04 19:08:10 +04:00
|
|
|
#![no_std] // don't link the Rust standard library
|
|
|
|
#![cfg_attr(not(test), no_main)] // disable all Rust-level entry points
|
|
|
|
#![cfg_attr(test, allow(dead_code, unused_macros, unused_imports))]
|
|
|
|
|
2018-11-19 13:21:06 +04:00
|
|
|
use ucore;
|