__time_to_tm: initialize tm_zone and tm_gmtoff
[musl] / src / time / timegm.c
1 #define _GNU_SOURCE
2 #include <time.h>
3
4 #include "__time.h"
5
6 time_t timegm(struct tm *tm)
7 {
8         return __tm_to_time(tm);
9 }