Retro68/gcc/newlib/libc/time/gmtime_r.c

15 lines
189 B
C
Raw Normal View History

2017-04-11 21:13:36 +00:00
/*
* gmtime_r.c
*/
#include <time.h>
#include "local.h"
struct tm *
_DEFUN (gmtime_r, (tim_p, res),
_CONST time_t * tim_p _AND
struct tm *res)
{
return (_mktm_r (tim_p, res, 1));
}