blob: 32e7993c59436bd0b21dd2f4bbecdc0c315bb993 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* ISC license. */
#include <sys/types.h>
#include <time.h>
#include <skalibs/tai.h>
int timespec_from_tain_relative (struct timespec *ts, tain_t const *a)
{
struct timespec tmp ;
if (!timespec_from_tai_relative(&tmp, tain_secp(a))) return 0 ;
ts->tv_sec = tmp.tv_sec ;
ts->tv_nsec = a->nano ;
return 1 ;
}
|