Skip to content

Commit

Permalink
Merge branch 'master' into new_deadcode
Browse files Browse the repository at this point in the history
  • Loading branch information
micahcantor authored Oct 31, 2023
2 parents 70664e9 + 3954ace commit acd3908
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
* Runtime: fix Dom_html.onIE (#1493)
* Runtime: add conversion functions + strict equality for compatibility with Wasm_of_ocaml (#1492)
* Runtime: Dynlink should be able to find symbols in jsoo_runtime #1517
* Runtime: fix Unix.lstat, Unix.LargeFile.lstat (#1519)
* Compiler: fix global flow analysis (#1494)
* Compiler: fix js parser/printer wrt async functions (#1515)

Expand Down
2 changes: 2 additions & 0 deletions runtime/unix.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ function caml_unix_stat(name) {
function caml_unix_stat_64(name) {
var r = caml_unix_stat(name);
r[9] = caml_int64_of_int32(r[9]);
return r;
}

//Provides: caml_unix_lstat
Expand All @@ -154,6 +155,7 @@ function caml_unix_lstat(name) {
function caml_unix_lstat_64(name) {
var r = caml_unix_lstat(name);
r[9] = caml_int64_of_int32(r[9]);
return r;
}

//Provides: caml_unix_mkdir
Expand Down

0 comments on commit acd3908

Please sign in to comment.