1// SPDX-License-Identifier: MIT OR Apache-2.0 2 3use crate::allocator::Allocator; 4 5#[global_allocator] 6static ALLOCATOR: Allocator = Allocator;