ref: 6565eb50cfcc4e11ed5e350cdae30dc861dc0a8e
dir: /lib/date/zoneinfo+plan9.myr/
use std
use sys
use "types"
pkg _zoneinfo =
type zifile
const findtzoff : (tz : byte[:], tm : std.time -> std.option(date.duration))
const load : (file : byte[:] -> zifile#)
const free : (f : zifile# -> void)
;;
type zifile = byte
const findtzoff = {tz, tm
-> `std.Some 0
}
const load = {f
-> std.alloc()
}
const free = {p
-> std.free(p)
}