blob: b1b6f3558b207b028a38a7532fd7f40ce5c0e104 [file] [log] [blame] [edit]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
fn main() {
let arg = std::env::args().next().expect("Expected one argument");
let code = arg.parse::<i64>().expect("Failed to parse argument as i64");
zx::Process::exit(code);
}