1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![feature(allocator_api, slice_ptr_get)]

mod alloc;
mod global;

// Re-export
pub use alloc::*;
pub use global::*;

// -------
// --------
#[cfg(test)]
mod tests {
    use super::*;
}