nostd_musl/
lib.rs

1//! # nostd-musl
2//!
3//! A rust library containing  which `XXXX-unknown-linux-gnu` toolchains expect to
4//! find in `libc`, so that they can be linked without dependency on `libc` using:
5//! * `-nodefaultlibs`
6//! * `-nostartfiles`
7//! * `-nostdlib`.
8#![no_std]
9#![allow(non_camel_case_types)]
10include!(concat!(env!("OUT_DIR"), "/bindings.rs"));