summaryrefslogtreecommitdiff
path: root/byterun/array.c
diff options
context:
space:
mode:
authorFabrice Le Fessant <fabrice.le_fessant@ocamlpro.com>2016-08-02 18:52:07 +0200
committerFabrice Le Fessant <fabrice.le_fessant@ocamlpro.com>2016-08-29 22:33:32 +0200
commit6b436a43ea5734e4853c735b722e200dfa970d77 (patch)
treeb19229478c5fb5695fdc76f738e1dec4aa0477ef /byterun/array.c
parenta424f0aae15c925f4deb0dadf4fcd6dcf2fae604 (diff)
downloadocaml-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.c3
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)