// Copyright 2020 The ChromiumOS Authors1// Use of this source code is governed by a BSD-style license that can be2// found in the LICENSE file.34#![allow(non_upper_case_globals)]5#![allow(non_camel_case_types)]6#![allow(non_snake_case)]7#![allow(dead_code)]89#[allow(clippy::all)]10pub mod bindings;11pub use bindings::*;1213pub mod msrs;14pub use msrs::*;1516pub mod cpuid;17pub use cpuid::*;1819#[cfg(windows)]20mod win;21#[cfg(windows)]22pub use win::*;2324#[cfg(any(target_os = "android", target_os = "linux"))]25mod posix;26#[cfg(any(target_os = "android", target_os = "linux"))]27pub use posix::*;282930