7 lines
223 B
Rust
7 lines
223 B
Rust
|
|
/// Note that the cwd, env, and command args are preserved in the ultimate call
|
||
|
|
/// to `execv`, so the caller is responsible for ensuring those values are
|
||
|
|
/// correct.
|
||
|
|
fn main() -> ! {
|
||
|
|
codex_linux_sandbox::run_main()
|
||
|
|
}
|