summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libugly/gmtime.c
blob: d33af797213ba9d3ae23cc3cf5b8e9bd55515356 (plain)
1
2
3
4
5
6
#include <time.h>

struct tm* gmtime(const time_t *t) {
  static struct tm tmp;
  return gmtime_r(t,&tmp);
}