freebsd-dev/contrib/ldns/compat/localtime_r.c

15 lines
237 B
C
Raw Normal View History

2012-07-04 14:22:28 +00:00
#ifdef HAVE_CONFIG_H
#include <ldns/config.h>
#endif
#ifdef HAVE_TIME_H
#include <time.h>
#endif
struct tm *localtime_r(const time_t *timep, struct tm *result)
{
/* no thread safety. */
*result = *localtime(timep);
return result;
}