Showing with 1 addition and 1 deletion.
  1. +1 −1 std/process.d
2 changes: 1 addition & 1 deletion std/process.d
Original file line number Diff line number Diff line change
Expand Up @@ -3773,7 +3773,7 @@ else version (OSX)
args[2] = null;
}

auto childpid = fork();
auto childpid = core.sys.posix.unistd.fork();
if (childpid == 0)
{
core.sys.posix.unistd.execvp(args[0], cast(char**)args.ptr);
Expand Down