blob: de775fdd93f4d74525c0f4cbfd9dac59e2bd9832 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* ISC license. */
#include <sys/time.h>
#include <skalibs/tai.h>
int timeval_from_tain_relative (struct timeval *tv, tain_t const *t)
{
if (!time_from_tai_relative(&tv->tv_sec, &t->sec)) return 0 ;
tv->tv_usec = (t->nano + 500) / 1000 ;
return 1 ;
}
|