//! Concerning the current working directory of a process, from
//! `/proc/[pid]/cwd`.
use fs;
use Result;
use PathBuf;
use pid_t;
/// Gets path of current working directory for the process with the provided
/// pid.
/// Gets path of current working directory for the current process.