Update third_party/lang-items to support OpenSK.

This commit is contained in:
Guillaume Endignoux
2020-07-10 10:33:44 +02:00
parent fbc7044328
commit 76c0840354
5 changed files with 166 additions and 89 deletions

9
third_party/lang-items/src/lib.rs vendored Normal file
View File

@@ -0,0 +1,9 @@
#![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;