Files
OpenSK/third_party/lang-items/src/lib.rs
2020-08-07 15:09:07 +02:00

10 lines
208 B
Rust

#![cfg_attr(not(feature = "std"), no_std)]
#![feature(alloc_error_handler)]
#[cfg(not(feature = "std"))]
mod allocator;
#[cfg(not(feature = "std"))]
mod panic_handler;
#[cfg(not(feature = "std"))]
mod util;