summaryrefslogtreecommitdiffstats
path: root/vendor/wait-timeout/src/bin/exit.rs
blob: f33c49f34e7ee11aef2def3a53c8869602357065 (plain)
1
2
3
4
fn main() {
    let code = std::env::args().nth(1).unwrap().parse().unwrap();
    std::process::exit(code);
}