Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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