//! A tiny subset of the `libc` crate.
#![allow(non_camel_case_types)]usecore::ffi::c_void;// While `size_t` doesn't _have_ to be usize, every platform supported
// by the `libc` crate defines `type size_t = usize`.
pubtypesize_t=usize;extern"C"{pubfnfree(p:*mut c_void);pubfnmemalign(align: size_t, size: size_t)->*mut c_void;}