mirror of
https://github.com/rcore-os/rCore.git
synced 2024-11-26 18:03:27 +04:00
5 lines
202 B
Rust
5 lines
202 B
Rust
#![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))]
|
|
|
|
use ucore; |