blob: 34bb5558f9089409589db6114cc13924e70847df (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* ISC license. */
#include <sys/types.h>
#include <time.h>
#include <skalibs/tai.h>
int tai_relative_from_timespec (tai_t *t, struct timespec const *ts)
{
tai_u64(t, ts->tv_sec) ;
return 1 ;
}
|