blob: 624293c122be1c95362989efc77623602291cfc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* ISC license. */
#include <sys/time.h>
#include <skalibs/tai.h>
int timeval_from_tain_relative (struct timeval *tv, tain_t const *a)
{
struct timeval tmp ;
if (!timeval_from_tai_relative(&tmp, tain_secp(a))) return 0 ;
tv->tv_sec = tmp.tv_sec ;
tv->tv_usec = a->nano / 1000 ;
return 1 ;
}
|