use ;
use ptr;
;
unsafe
/// Defines a global allocator without a backing heap.
///
/// This macros lets you use the types and methods in the `alloc` crate without
/// a backing heap. This is useful for methods that do not allocate, such as
/// sorting. Any attempts to allocate will instantly give an OOM error. This is
/// a dependency-free alternative to heap!(0 bytes).