git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@6225 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
master
Basile Starynkevitch 2004-04-16 13:47:01 +00:00
parent 941263f019
commit 804e703c80
1 changed files with 2 additions and 1 deletions

View File

@ -41,7 +41,8 @@ CAMLprim value caml_static_free(value blk)
needed (before freeing it) - this might be useful for a JIT
implementation */
CAMLprim value caml_static_release_bytecode(value blk, value size) {
CAMLprim value caml_static_release_bytecode(value blk, value size)
{
caml_release_bytecode((code_t) blk, (asize_t) Long_val(size));
return Val_unit;
}