acpica_sys/
lib.rs

1#![no_std]
2#![allow(bad_style)]
3pub type va_list = usize;
4
5#[repr(u8)]
6pub enum c_void {
7    __var1,
8    __var2,
9}
10
11#[cfg(target_pointer_width = "32")]
12include!("raw32.rs");
13
14#[cfg(target_pointer_width = "64")]
15include!("raw64.rs");