You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
166 B

#include <time.h>
#include "__time.h"
struct tm *gmtime_r(const time_t *t, struct tm *result)
{
__time_to_tm(*t, result);
result->tm_isdst = 0;
return result;
}