stak_libc/
lib.rs

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