//! Commands that are run from the shell directly, without forking another
//! process.
//!
//! These commands take precedence over any executables with the same name
//! in the `$PATH`.
use CString;
use WaitStatus;
use crate;
/// A builtin is a custom shell command, often changing the state of the
/// shell in some way.
pub use Cd;
pub use Command;
pub use Dot;
pub use Exit;
pub use Export;
pub use Jobs;
pub use r#returnReturn;
pub use Wait;