blob: c059797df9628a532b2460fc24bbcf444dd23a77 [file] [log] [blame]
//! Provides helpers for making ptrace system calls
#[cfg(linux_android)]
mod linux;
#[cfg(linux_android)]
pub use self::linux::*;
#[cfg(bsd)]
mod bsd;
#[cfg(bsd)]
pub use self::bsd::*;