Fix imports in ctap, embedded_flash and lang-items.

This commit is contained in:
Guillaume Endignoux
2020-09-22 13:14:33 +02:00
parent 942a20dbda
commit ff73936a4d
10 changed files with 35 additions and 14 deletions

View File

@@ -7,3 +7,10 @@ mod allocator;
mod panic_handler;
#[cfg(not(feature = "std"))]
mod util;
#[cfg(feature = "std")]
#[no_mangle]
unsafe fn libtock_alloc_init(_app_heap_start: usize, _app_heap_size: usize) {
// Stub so that the symbol is present.
unimplemented!()
}