Skip to content

Commit

Permalink
jsc/common/thinthin.jsc: changes for perl
Browse files Browse the repository at this point in the history
  • Loading branch information
pipcet committed Jan 31, 2021
1 parent 21dc13f commit 1887519
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion jsc/common/thinthin.jsc
Original file line number Diff line number Diff line change
Expand Up @@ -3471,7 +3471,7 @@ ThinThin.destroy_trampoline = function (mtramp)
ThinThin.chdir = function (ptr)
{
var path = CStringAt(this.HEAPU8, ptr);
this.pwd = path;
this.pwd += "/" + path;
return Promise.resolve(0);
};

Expand Down Expand Up @@ -3626,3 +3626,8 @@ ThinThin.utimensat = function (fdno, pathptr, timesptr, flag)
{
return 0;
};

ThinThin.fchmodat = function ()
{
return 0;
};

0 comments on commit 1887519

Please sign in to comment.