mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-15 10:17:20 +00:00
15 lines
231 B
C
15 lines
231 B
C
#ifdef HAVE_CONFIG_H
|
|
#include <ldns/config.h>
|
|
#endif
|
|
|
|
#ifdef HAVE_TIME_H
|
|
#include <time.h>
|
|
#endif
|
|
|
|
struct tm *gmtime_r(const time_t *timep, struct tm *result)
|
|
{
|
|
/* no thread safety. */
|
|
*result = *gmtime(timep);
|
|
return result;
|
|
}
|