ialloc/allocator/_allocator.rs
1//! Allocator implementations
2
3#[path = "adapt/_adapt.rs" ] pub mod adapt;
4#[path = "alloc/_alloc.rs" ] pub mod alloc;
5#[path = "c/_c.rs" ] pub mod c;
6#[path = "cpp/_cpp.rs" ] pub mod cpp;
7#[path = "debug/_debug.rs" ] pub mod debug;
8#[path = "simple/_simple.rs"] pub mod simple;
9#[path = "win32/_win32.rs" ] pub mod win32;