[][src]Macro ocaml_sys::caml_local

macro_rules! caml_local {
    ($($local:ident),*) => { ... };
}

Initializes and registers the given identifier(s) as a local value with the OCaml runtime.

Original C code

#define CAMLlocal1(x) \
value x = Val_unit; \
CAMLxparam1 (x)