/usr/lib/ocaml/camlp5/reloc.mli is in camlp5 7.01-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | (* camlp5r *)
(* reloc.mli,v *)
(* Copyright (c) INRIA 2007-2017 *)
value expr : (MLast.loc -> MLast.loc) -> int -> MLast.expr -> MLast.expr;
value patt : (MLast.loc -> MLast.loc) -> int -> MLast.patt -> MLast.patt;
(* Equality over syntax trees *)
value eq_expr : MLast.expr -> MLast.expr -> bool;
value eq_patt : MLast.patt -> MLast.patt -> bool;
value eq_ctyp : MLast.ctyp -> MLast.ctyp -> bool;
value eq_str_item : MLast.str_item -> MLast.str_item -> bool;
value eq_sig_item : MLast.sig_item -> MLast.sig_item -> bool;
value eq_module_expr : MLast.module_expr -> MLast.module_expr -> bool;
value eq_module_type : MLast.module_type -> MLast.module_type -> bool;
value eq_class_sig_item :
MLast.class_sig_item -> MLast.class_sig_item -> bool;
value eq_class_str_item :
MLast.class_str_item -> MLast.class_str_item -> bool;
value eq_class_type : MLast.class_type -> MLast.class_type -> bool;
value eq_class_expr : MLast.class_expr -> MLast.class_expr -> bool;
|