blob: 25f9205390b172d0e4fccacdfb59fdaf74eb44f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/* ISC license. */
#include <skalibs/config.h>
#include <skalibs/uint64.h>
#include <skalibs/djbtime.h>
#ifdef SKALIBS_FLAG_CLOCKISTAI
#include <skalibs/tai.h>
int sysclock_from_utc (uint64 *u)
{
tai_t t ;
if (!tai_from_utc(&t, *u)) return 0 ;
*u = t.x - 10 ;
return 1 ;
}
#else
int sysclock_from_utc (uint64 *u)
{
(void)u ;
return 1 ;
}
#endif
|