mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-23 16:20:26 -05:00
13 lines
198 B
C
13 lines
198 B
C
|
|
#include "config.h"
|
||
|
|
|
||
|
|
#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;
|
||
|
|
}
|