1
 2
 3
 4
 5
 6
 7
 8
 9
10
//! `libproc` is a library for getting information about running processes
//! for Mac and Linux.
//!
//! Not all methods are available on both Operating Systems yet, but more will
//! be made cross-platform over time.
//!
extern crate libc;
extern crate errno;

pub mod libproc;