blob: a10c0e6003fc60ac3a87f6636b8b9784154a7d36 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "time_impl.h"
#include <errno.h>
struct tm *gmtime(const time_t *t)
{
static struct tm tm;
return __gmtime_r(t, &tm);
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif
|