1 /* Public domain. */
2 
3 #include "taia.h"
4 
taia_approx(const struct taia * t)5 double taia_approx(const struct taia *t)
6 {
7   return tai_approx(&t->sec) + taia_frac(t);
8 }
9