DoxigAlpha

can_execv

Tells whether calling the execv or execve functions will be a compile error.

Source

Implementation

#
pub const can_execv = switch (native_os) {
    .windows, .haiku, .wasi => false,
    else => true,
}