mextk_sys/
lib.rs

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