guard against compilers failing to handle setjmp specially by default
[musl.git] / src / time / mktime.c
blobbad3f0765a089fd9f97e6f0d651b15fd19d949ed
1 #include "time_impl.h"
2 #include <errno.h>
4 time_t mktime(struct tm *tm)
6 struct tm new;
7 long opp;
8 long long t = __tm_to_secs(tm);
10 __secs_to_zone(t, 1, &new.tm_isdst, &new.__tm_gmtoff, &opp, &new.__tm_zone);
12 if (tm->tm_isdst>=0 && new.tm_isdst!=tm->tm_isdst)
13 t -= opp - new.__tm_gmtoff;
15 t -= new.__tm_gmtoff;
16 if ((time_t)t != t) goto error;
18 __secs_to_zone(t, 0, &new.tm_isdst, &new.__tm_gmtoff, &opp, &new.__tm_zone);
20 if (__secs_to_tm(t + new.__tm_gmtoff, &new) < 0) goto error;
22 *tm = new;
23 return t;
25 error:
26 errno = EOVERFLOW;
27 return -1;