diff options
Diffstat (limited to 'byterun/memory.h')
-rw-r--r-- | byterun/memory.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/byterun/memory.h b/byterun/memory.h index dddf9a36b..69f5ff91c 100644 --- a/byterun/memory.h +++ b/byterun/memory.h @@ -173,8 +173,8 @@ CAMLextern struct caml__roots_block *caml_local_roots; /* defined in roots.c */ If you need local variables of type [value], declare them with one or more calls to the [CAMLlocal] macros at the beginning of the - function. Use [CAMLlocalN] (at the beginning of the function) to - declare an array of [value]s. + function, after the call to CAMLparam. Use [CAMLlocalN] (at the + beginning of the function) to declare an array of [value]s. Your function may raise an exception or return a [value] with the [CAMLreturn] macro. Its argument is simply the [value] returned by |