1 //! Provides helpers for making ptrace system calls 2 3 #[cfg(linux_android)] 4 mod linux; 5 6 #[cfg(linux_android)] 7 pub use self::linux::*; 8 9 #[cfg(bsd)] 10 mod bsd; 11 12 #[cfg(bsd)] 13 pub use self::bsd::*; 14