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

8 lines
226 B
Rust

// 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;