artiq-zynq/src/libc/src/lib.rs

8 lines
226 B
Rust
Raw Normal View History

2020-06-30 10:18:33 +08:00
// Helper crate for dealing with libc dependencies, which only requires these
// definitions...
#![allow(non_camel_case_types)]
#![no_std]
pub type c_int = i32;
pub type uintptr_t = usize;
pub type c_void = core::ffi::c_void;