From 49d8fa1058aaf23c29e074b2314492ae40d2f557 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Tue, 21 Feb 2017 12:05:07 +0000 Subject: Types change: big pass on libstddjb and libunixonacid libdatastruct still missing, library still not functional --- src/libstddjb/time_from_tai.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/libstddjb/time_from_tai.c') diff --git a/src/libstddjb/time_from_tai.c b/src/libstddjb/time_from_tai.c index cdf1357..406fcfb 100644 --- a/src/libstddjb/time_from_tai.c +++ b/src/libstddjb/time_from_tai.c @@ -5,14 +5,15 @@ #define _BSD_SOURCE #endif -#include -#include #include +#include +#include +#include #include int time_from_tai (time_t *u, tai_t const *t) { - register uint64 uu = t->x - TAI_MAGIC ; + register uint64_t uu = t->x - TAI_MAGIC ; #if SKALIBS_SIZEOFTIME < 8 if ((uu >> 32) && (uu >> 32) != 0xffffffffUL) return (errno = EOVERFLOW, 0) ; -- cgit v1.2.3