mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-11 12:35:26 +00:00
10 lines
235 B
Rust
10 lines
235 B
Rust
|
// Copyright 2022 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_if::cfg_if! {
|
||
|
if #[cfg(unix)] {
|
||
|
mod unix;
|
||
|
}
|
||
|
}
|