summaryrefslogtreecommitdiff
path: root/src/libstddjb/timespec_from_tai.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2015-01-09 01:00:59 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2015-01-09 01:00:59 +0000
commit1c032ec5855551c44b88f94fc35fa87db4279f0a (patch)
tree4aabf428c1346f01dbb65d726450d18add172603 /src/libstddjb/timespec_from_tai.c
parentc2b04f3c900553ce385203b54e351df0e79449e1 (diff)
downloadskalibs-1c032ec5855551c44b88f94fc35fa87db4279f0a.tar.xz
tai conversion functions overhaul.
API change -> rc for 2.2.0.0 Doc updated.
Diffstat (limited to 'src/libstddjb/timespec_from_tai.c')
-rw-r--r--src/libstddjb/timespec_from_tai.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/libstddjb/timespec_from_tai.c b/src/libstddjb/timespec_from_tai.c
deleted file mode 100644
index 7bb84d4..0000000
--- a/src/libstddjb/timespec_from_tai.c
+++ /dev/null
@@ -1,12 +0,0 @@
-/* ISC license. */
-
-#include <sys/types.h>
-#include <time.h>
-#include <skalibs/tai.h>
-
-int timespec_from_tai (struct timespec *ts, tai_t const *t)
-{
- tai_t trel ;
- tai_u64(&trel, tai_sec(t) - TAI_MAGIC) ;
- return timespec_from_tai_relative(ts, &trel) ;
-}