mirror of
https://frontier.innolan.net/github/amiga-ixemul.git
synced 2026-09-12 17:12:43 +00:00
18 lines
241 B
C
18 lines
241 B
C
/*
|
|
* gmtime_r.c - ripped from pandora
|
|
*/
|
|
|
|
#include <time.h>
|
|
#include <string.h>
|
|
|
|
struct tm *gmtime_r (t, tp)
|
|
const time_t *t;
|
|
struct tm *tp;
|
|
{
|
|
struct tm *tp0;
|
|
|
|
tp0 = gmtime(t);
|
|
memcpy(tp, tp0, sizeof(*tp));
|
|
return tp;
|
|
}
|