1 #![no_std] 2 3 use libc_alloc::LibcAlloc; 4 5 #[global_allocator] 6 static ALLOCATOR: LibcAlloc = LibcAlloc; 7