/usr/lib/ocaml/bin_prot/nat0.mli is in libbin-prot-camlp4-dev 113.00.00-1.
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"
|