This file is indexed.

/usr/lib/ocaml/bin_prot/nat0.mli is in libbin-prot-camlp4-dev 109.30.00-2.

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
(** Nat0: natural numbers (including zero) *)

type t = private int

val of_int : int -> t
(** [of_int n] converts integer [n] to a natural number.  @raise Failure
    if [n] is negative. *)

external unsafe_of_int : int -> t = "%identity"