mirror of
https://github.com/ziglang/zig.git
synced 2025-12-11 00:33:08 +00:00
thanks to BenoitJGirard for pointing out the child process implementation needs 3 extra null bytes in #2031
7 lines
202 B
Zig
7 lines
202 B
Zig
const std = @import("std");
|
|
|
|
pub fn main() void {
|
|
const env_map = std.os.getEnvMap(std.debug.global_allocator) catch @panic("unable to get env map");
|
|
std.testing.expect(env_map.count() == 0);
|
|
}
|