mirror of
https://github.com/openai/codex.git
synced 2026-09-17 12:23:33 +00:00
9 lines
197 B
Rust
9 lines
197 B
Rust
#[cfg(not(unix))]
|
|
fn main() {
|
|
eprintln!("codex-execve-wrapper is only implemented for UNIX");
|
|
std::process::exit(1);
|
|
}
|
|
|
|
#[cfg(unix)]
|
|
pub use codex_exec_server::main_execve_wrapper as main;
|