//! Defines the global allocator for the PROS runtime
usecore::alloc::Layout;usenewlib_alloc::Alloc;/// Sets the global allocator
#[global_allocator]staticALLOCATOR: Alloc = Alloc;#[alloc_error_handler]fnhandle(layout: Layout)->!{panic!("memory allocation failed: {:#?}", layout);}