zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit b5a2487f7a7b48c4d30a17b3d9b807dccbaf43fc (tree)
parent b9198b708f8accb41fdb3f11bf635d63fbff461d
Author: Adheesh Wadkar <apwadkar@pm.me>
Date:   Fri, 17 Jan 2025 00:22:13 -0600

Fix chdirC compile error

Diffstat:
Mlib/std/process.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/std/process.zig b/lib/std/process.zig @@ -15,7 +15,7 @@ pub const Child = @import("process/Child.zig"); pub const abort = posix.abort; pub const exit = posix.exit; pub const changeCurDir = posix.chdir; -pub const changeCurDirC = posix.chdirC; +pub const changeCurDirZ = posix.chdirZ; pub const GetCwdError = posix.GetCwdError;