summaryrefslogtreecommitdiffstats
path: root/vendor/redox_syscall/src/io/mod.rs
blob: a9cd4c86d93a87fdbe313d04dd9e25735a38b383 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! I/O functions

pub use self::dma::*;
pub use self::io::*;
pub use self::mmio::*;

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

mod dma;
mod io;
mod mmio;

#[cfg(target_arch = "x86_64")]
mod pio;