1 // Copyright 2019 The ChromiumOS Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 /// libminijail bindings for Rust. 6 7 #[allow( 8 clippy::all, 9 non_camel_case_types, 10 non_snake_case, 11 non_upper_case_globals 12 )] 13 mod libminijail { 14 include!(concat!(env!("OUT_DIR"), "/libminijail.rs")); 15 } 16 pub use crate::libminijail::*; 17