Module Time_Zone


module Time_Zone: sig  end


type t =
| UTC
| Local
| UTC_Plus of int
val current : unit -> t
val change : t -> unit
val gap : t -> t -> int
val from_gmt : unit -> int
val to_gmt : unit -> int