diff options
author | Fabrice Le Fessant <fabrice.le_fessant@ocamlpro.com> | 2016-08-02 18:52:07 +0200 |
---|---|---|
committer | Fabrice Le Fessant <fabrice.le_fessant@ocamlpro.com> | 2016-08-29 22:33:32 +0200 |
commit | 6b436a43ea5734e4853c735b722e200dfa970d77 (patch) | |
tree | b19229478c5fb5695fdc76f738e1dec4aa0477ef /byterun/array.c | |
parent | a424f0aae15c925f4deb0dadf4fcd6dcf2fae604 (diff) | |
download | ocaml-6b436a43ea5734e4853c735b722e200dfa970d77.tar.gz |
Add --reserved-header-bits XX to ./configure
with XX a number smaller than 32 (to leave at least 22 bits for the size)
Diffstat (limited to 'byterun/array.c')
-rw-r--r-- | byterun/array.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/byterun/array.c b/byterun/array.c index 86b29c32a2..dd694affc2 100644 --- a/byterun/array.c +++ b/byterun/array.c @@ -23,7 +23,8 @@ #include "caml/misc.h" #include "caml/mlvalues.h" #include "caml/signals.h" -#include "spacetime.h" +/* Why is caml/spacetime.h included conditionnally sometimes and not here ? */ +#include "caml/spacetime.h" /* returns number of elements (either fields or floats) */ CAMLexport mlsize_t caml_array_length(value array) |