Module Procfs.Mount

module Mount: sig .. end

type t = {
   spec :string;
   file :string;
   vfstype :string;
   mntops :string list;
   freq :int;
   passno :int;
}
val passno : t -> int
val freq : t -> int
val mntops : t -> string list
val vfstype : t -> string
val file : t -> string
val spec : t -> string
module Fields: sig .. end