xen_sys/
lib.rs

1#![allow(
2    non_camel_case_types,
3    non_snake_case,
4    non_upper_case_globals,
5    clippy::missing_safety_doc,
6    clippy::too_many_arguments,
7    clippy::useless_transmute,
8
9    // remove when a new version of bindgen is released
10    // https://github.com/rust-lang/rust-bindgen/pull/3124
11    unsafe_code,
12    unsafe_op_in_unsafe_fn,
13    clippy::ptr_offset_with_cast,
14)]
15
16include!(concat!(env!("OUT_DIR"), "/bindings.rs"));