rework langinfo code for ABI compat and for use by time code
[musl] / 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 }