Skip to content

Commit

Permalink
rename stubs
Browse files Browse the repository at this point in the history
  • Loading branch information
hhugo committed Oct 13, 2019
1 parent 985e2ef commit aba46c6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/runtime.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,21 +32,21 @@
----------------------------------------------------------------------------*/

//Provides: bigstringaf_blit_to_bytes
//Requires: caml_ba_blit_ba_to_bytes
//Requires: caml_bigstring_blit_ba_to_bytes
function bigstringaf_blit_to_bytes(src, src_off, dst, dst_off, len) {
return caml_ba_blit_ba_to_bytes(src,src_off,dst,dst_off,len);
return caml_bigstring_blit_ba_to_bytes(src,src_off,dst,dst_off,len);
}

//Provides: bigstringaf_blit_to_bigstring
//Requires: caml_ba_blit_ba_to_ba
//Requires: caml_bigstring_blit_ba_to_ba
function bigstringaf_blit_to_bigstring(src, src_off, dst, dst_off, len) {
return caml_ba_blit_ba_to_ba(src, src_off, dst, dst_off, len);
return caml_bigstring_blit_ba_to_ba(src, src_off, dst, dst_off, len);
}

//Provides: bigstringaf_blit_from_bytes
//Requires: caml_ba_blit_string_to_ba
//Requires: caml_bigstring_blit_string_to_ba
function bigstringaf_blit_from_bytes(src, src_off, dst, dst_off, len) {
return caml_ba_blit_string_to_ba(src, src_off, dst, dst_off, len);
return caml_bigstring_blit_string_to_ba(src, src_off, dst, dst_off, len);
}

//Provides: bigstringaf_memcmp_bigstring
Expand Down

0 comments on commit aba46c6

Please sign in to comment.