Module Sys_utils.Lsb_release

module Lsb_release: sig .. end

type t = {
   distributor_id : string;
   release : string;
   codename : string;
}
val codename : t -> string
val release : t -> string
val distributor_id : t -> string
module Fields: sig .. end
val query : unit -> t
val t_of_sexp : Sexplib.Sexp.t -> t
val sexp_of_t : t -> Sexplib.Sexp.t