From 1bce6b0f9f8cd614038a6e7fc21fb984724204a4 Mon Sep 17 00:00:00 2001 From: xleroy Date: Mon, 29 Dec 2008 13:12:08 +0000 Subject: Extract Coq lists to Caml lists. git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@929 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e --- caml/Driver.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'caml/Driver.ml') diff --git a/caml/Driver.ml b/caml/Driver.ml index dacc9dcb..8fffcaa0 100644 --- a/caml/Driver.ml +++ b/caml/Driver.ml @@ -39,7 +39,7 @@ let print_error oc msg = let print_one_error = function | Errors.MSG s -> output_string oc (Camlcoq.camlstring_of_coqstring s) | Errors.CTX i -> output_string oc (Camlcoq.extern_atom i) - in Camlcoq.coqlist_iter print_one_error msg + in List.iter print_one_error msg (* For the CIL -> Csyntax translator: -- cgit