//! Global allocator and memory utilities for brk.
//!
//! This crate sets mimalloc as the global allocator and provides
//! utilities for monitoring and managing memory.
use MiMalloc as Allocator;
static GLOBAL: Allocator = Allocator;
/// Mimalloc allocator utilities
;