diff options
Diffstat (limited to 'byterun/alloc.h')
-rw-r--r-- | byterun/alloc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/byterun/alloc.h b/byterun/alloc.h index 1cf70c224..66cab7024 100644 --- a/byterun/alloc.h +++ b/byterun/alloc.h @@ -32,7 +32,7 @@ CAMLextern value caml_copy_string_array (char const **); CAMLextern value caml_copy_double (double); CAMLextern value caml_copy_int32 (int32); /* defined in [ints.c] */ CAMLextern value caml_copy_int64 (int64); /* defined in [ints.c] */ -CAMLextern value caml_copy_nativeint (long); /* defined in [ints.c] */ +CAMLextern value caml_copy_nativeint (intnat); /* defined in [ints.c] */ CAMLextern value caml_alloc_array (value (*funct) (char const *), char const ** array); |