libc_extra/android_linux/linux/capability/mod.rs
1// This file is part of libc-extra. It is subject to the license terms in the COPYRIGHT file found in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/libc-extra/master/COPYRIGHT. No part of libc-extra, including this file, may be copied, modified, propagated, or distributed except according to the terms contained in the COPYRIGHT file.
2// Copyright © 2016-2018 The developers of libc-extra. See the COPYRIGHT file in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/libc-extra/master/COPYRIGHT.
3
4
5#![allow(non_camel_case_types)]
6
7use ::std::default::Default;
8use ::std::mem::zeroed;
9use ::libc::c_int;
10use ::libc::c_longlong;
11use ::libc::c_uchar;
12use ::libc::c_uint;
13use ::libc::size_t;
14
15
16include!("constants/_LINUX_CAPABILITY.rs");
17include!("constants/VFS_CAP.rs");
18include!("constants/CAP.rs");
19include!("task_struct.rs");
20include!("__user_cap_header_struct.rs");
21include!("cap_user_header_t.rs");
22include!("__user_cap_data_struct.rs");
23include!("cap_user_data_t.rs");
24include!("vfs_cap_data.rs");
25include!("Data.rs");