summaryrefslogtreecommitdiff
path: root/src/libstddjb/timeval_from_tai.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstddjb/timeval_from_tai.c')
-rw-r--r--src/libstddjb/timeval_from_tai.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/libstddjb/timeval_from_tai.c b/src/libstddjb/timeval_from_tai.c
new file mode 100644
index 0000000..d0c4777
--- /dev/null
+++ b/src/libstddjb/timeval_from_tai.c
@@ -0,0 +1,11 @@
+/* ISC license. */
+
+#include <sys/time.h>
+#include <skalibs/tai.h>
+
+int timeval_from_tai (struct timeval *tv, tai_t const *t)
+{
+ tai_t trel ;
+ tai_u64(&trel, tai_sec(t) - TAI_MAGIC) ;
+ return timeval_from_tai_relative(tv, &trel) ;
+}