4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-16 03:19:54 +08:00

15 lines
210 B
C
Raw Normal View History

2000-02-17 19:39:52 +00:00
/*
* gmtime_r.c
*/
#include <time.h>
#include "local.h"
2000-02-17 19:39:52 +00:00
struct tm *
_DEFUN (gmtime_r, (tim_p, res),
_CONST time_t *__restrict tim_p _AND
struct tm *__restrict res)
2000-02-17 19:39:52 +00:00
{
return (_mktm_r (tim_p, res, 1));
2000-02-17 19:39:52 +00:00
}