diff options
Diffstat (limited to 'src/libstddjb/utc_from_localtm.c')
-rw-r--r-- | src/libstddjb/utc_from_localtm.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libstddjb/utc_from_localtm.c b/src/libstddjb/utc_from_localtm.c index a5886f3..99b4470 100644 --- a/src/libstddjb/utc_from_localtm.c +++ b/src/libstddjb/utc_from_localtm.c @@ -1,11 +1,10 @@ /* ISC license. */ -#include <sys/types.h> #include <time.h> #include <skalibs/uint64.h> #include <skalibs/djbtime.h> -int utc_from_localtm (uint64 *uu, struct tm const *l) +int utc_from_localtm (uint64_t *uu, struct tm const *l) { if (!ltm64_from_localtm(uu, l)) return 0 ; utc_from_ltm64(uu) ; |