stak_libc/
lib.rs

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