Add copyright notices and new function String.chomp
[ocaml.git] / asmcomp / asmlibrarian.mli
blob66f6a127fd299c26fbba7c4bbbeec33cd4b72dbb
1 (***********************************************************************)
2 (* *)
3 (* Objective Caml *)
4 (* *)
5 (* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
6 (* *)
7 (* Copyright 1996 Institut National de Recherche en Informatique et *)
8 (* en Automatique. All rights reserved. This file is distributed *)
9 (* under the terms of the Q Public License version 1.0. *)
10 (* *)
11 (***********************************************************************)
13 (* $Id$ *)
15 (* Build libraries of .cmx files *)
17 open Format
19 val create_archive: string list -> string -> unit
21 type error =
22 File_not_found of string
23 | Archiver_error of string
25 exception Error of error
27 val report_error: formatter -> error -> unit