ref: 77b41a0cc4e47ad0ab95f6144cd079d250e4b622
dir: /lib/thread/fsbase+openbsd.myr/
use sys
use "types"
pkg thread =
	pkglocal const setfsbase : (h : tlshdr# -> void)
	pkglocal const getfsbase : (-> tlshdr#)
;;
const setfsbase = {h
	sys.__set_tcb((h : void#))
}
const getfsbase = {
	-> (sys.__get_tcb() : tlshdr#)
}