mmalloc 0.1.0

A simple mmap-based allocator
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![cfg_attr(feature = "allocator", allocator)]
#![feature(allocator)]
#![feature(linkage)]
#![no_std]

#[macro_use]
extern crate sc;

mod allocator;
pub use allocator::*;

#[cfg(not(test))]
#[cfg(feature = "allocator")]
mod symbols;

#[cfg(not(test))]
#[cfg(feature = "allocator")]
pub use symbols::*;