summary refs log tree commit diff
path: root/hypervisor/src/types/mod.rs
blob: 69fa9e45c2032bc1f3a6e1b9148bc64ec84a5563 (plain) (blame)
1
2
3
4
5
6
7
8
9
// Copyright 2020 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
pub mod x86;

#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
pub use self::x86::*;