diff options
Diffstat (limited to 'bindings/ocaml/llvm')
-rw-r--r-- | bindings/ocaml/llvm/llvm_ocaml.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bindings/ocaml/llvm/llvm_ocaml.c b/bindings/ocaml/llvm/llvm_ocaml.c index ae07fb2..c297a5f 100644 --- a/bindings/ocaml/llvm/llvm_ocaml.c +++ b/bindings/ocaml/llvm/llvm_ocaml.c @@ -19,7 +19,11 @@ #include "caml/alloc.h" #include "caml/mlvalues.h" #include "caml/memory.h" -#include "stdio.h" +#include "llvm/Config/config.h" +#include <stdio.h> +#ifdef HAVE_ALLOCA_H +#include <alloca.h> +#endif /*===-- Modules -----------------------------------------------------------===*/ |