blob: d98abceddfdb158014dfa155aed61a7f86e235bb (
plain)
1
2
3
4
5
|
// bindgen-flags: --ctypes-prefix "libc" --use-core --raw-line "#![no_std]" --raw-line "mod libc { pub type c_int = i32; pub enum c_void {} }" --rustified-enum ".*"
struct foo {
int a, b;
void* bar;
};
|