1#![no_std]
2#![allow(
3 non_snake_case,
4 non_camel_case_types,
5 non_upper_case_globals,
6)]
78include!("bindings.rs");
910/// Re-export of [mextk-libc](https://docs.rs/mextk-libc) for accesssing the subset of libc
11/// supported.
12pub use mextk_libc as libc;