stak_libc/
lib.rs

1//! Utilities around `libc` for Stak Scheme.
2
3#![no_std]
4
5mod heap;
6mod mmap;
7
8pub use heap::Heap;
9pub use mmap::Mmap;