Linux Audio

Check our new training course

Loading...
#include <time.h>

#include "__time.h"

struct tm *gmtime(const time_t *t)
{
	static struct tm tm;
	__time_to_tm(*t, &tm);
	tm.tm_isdst = 0;
	return &tm;
}