6d08917e449518bb00179d56d7e38e8a2e61a98d
[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 }