]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/ldns/compat/gmtime_r.c
Update libdialog to 1.3-20180621
[FreeBSD/FreeBSD.git] / contrib / ldns / compat / gmtime_r.c
1 #ifdef HAVE_CONFIG_H
2 #include <ldns/config.h>
3 #endif
4
5 #ifdef HAVE_TIME_H
6 #include <time.h>
7 #endif
8
9 struct tm *gmtime_r(const time_t *timep, struct tm *result)
10 {
11         /* no thread safety. */
12         *result = *gmtime(timep);
13         return result;
14 }