mirror of
https://github.com/qemu/qemu.git
synced 2026-07-09 01:56:21 +00:00
12 lines
212 B
Rust
12 lines
212 B
Rust
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
pub mod bindings;
|
|
|
|
mod memory;
|
|
pub use memory::*;
|
|
|
|
// preserve one-item-per-"use" syntax, it is clearer
|
|
// for prelude-like modules
|
|
#[rustfmt::skip]
|
|
pub mod prelude;
|