/* ISC license. */ #include #include int timeval_from_tain (struct timeval *tv, tain_t const *t) { if (!time_from_tai(&tv->tv_sec, &t->sec)) return 0 ; tv->tv_usec = (t->nano + 500) / 1000 ; return 1 ; }