diff options
author | Rich Felker <dalias@aerifal.cx> | 2013-07-17 05:24:50 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2013-07-17 05:24:50 -0400 |
commit | 1cc81f5cb0df2b66a795ff0c26d7bbc4d16e13c6 (patch) | |
tree | d8839fbfd8cb1fb5658394cad6a6a06688ab6a1b /src/time/localtime.c | |
parent | f1292e3d28309bbc81f61671164843cec4319bfa (diff) | |
download | musl-1cc81f5cb0df2b66a795ff0c26d7bbc4d16e13c6.tar.gz musl-1cc81f5cb0df2b66a795ff0c26d7bbc4d16e13c6.tar.bz2 musl-1cc81f5cb0df2b66a795ff0c26d7bbc4d16e13c6.tar.xz musl-1cc81f5cb0df2b66a795ff0c26d7bbc4d16e13c6.zip |
the big time handling overhaul
this commit has two major user-visible parts: zoneinfo-format time
zones are now supported, and overflow handling is intended to be
complete in the sense that all functions return a correct result if
and only if the result fits in the destination type, and otherwise
return an error. also, some noticable bugs in the way DST detection
and normalization worked have been fixed, and performance may be
better than before, but it has not been tested.
Diffstat (limited to 'src/time/localtime.c')
-rw-r--r-- | src/time/localtime.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/time/localtime.c b/src/time/localtime.c index abd5e84d..bb6718c3 100644 --- a/src/time/localtime.c +++ b/src/time/localtime.c @@ -1,12 +1,9 @@ -#include <time.h> +#include "time_impl.h" -#include "__time.h" +struct tm *__localtime_r(const time_t *restrict, struct tm *restrict); struct tm *localtime(const time_t *t) { static struct tm tm; - __tzset(); - __time_to_tm(*t - __timezone, &tm); - tm.tm_isdst = -1; - return __dst_adjust(&tm); + return __localtime_r(t, &tm); } |