gstreamer/libs/gst/check/libcheck/libcompat/localtime_r.c

20 lines
287 B
C
Raw Normal View History

#include "libcompat.h"
#if !defined(localtime_r)
struct tm *
localtime_r (const time_t * clock, struct tm *result)
{
struct tm *now = localtime (clock);
if (now == NULL) {
return NULL;
} else {
*result = *now;
}
return result;
}
#endif /* !defined(localtime_r) */