runit

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

taia_approx.c (131B)


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