authorgravatar for apwadkar@pm.meAdheesh Wadkar <apwadkar@pm.me> 2025-01-17 00:22:13-06:00
committergravatar for apwadkar@pm.meAdheesh Wadkar <apwadkar@pm.me> 2025-01-20 15:37:57-06:00
logb5a2487f7a7b48c4d30a17b3d9b807dccbaf43fc
tree6dc153af4159017be2ec5b4bf7cae15164a45203
parentb9198b708f8accb41fdb3f11bf635d63fbff461d

Fix chdirC compile error


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/process.zig+1-1
...@@ -15,7 +15,7 @@ pub const Child = @import("process/Child.zig");...@@ -15,7 +15,7 @@ pub const Child = @import("process/Child.zig");
15pub const abort = posix.abort;15pub const abort = posix.abort;
16pub const exit = posix.exit;16pub const exit = posix.exit;
17pub const changeCurDir = posix.chdir;17pub const changeCurDir = posix.chdir;
18pub const changeCurDirC = posix.chdirC;18pub const changeCurDirZ = posix.chdirZ;
1919
20pub const GetCwdError = posix.GetCwdError;20pub const GetCwdError = posix.GetCwdError;
2121