if_iwm - Factor out firmware station handling into if_iwm_sta.c.
[dragonfly.git] / contrib / ldns / compat / gmtime_r.c
blob7062e7dee30d160ab3df013923b5c9d6032ed9da
1 #ifdef HAVE_CONFIG_H
2 #include <ldns/config.h>
3 #endif
5 #ifdef HAVE_TIME_H
6 #include <time.h>
7 #endif
9 struct tm *gmtime_r(const time_t *timep, struct tm *result)
11 /* no thread safety. */
12 *result = *gmtime(timep);
13 return result;