blob: fb39238d37c1618c43ef9e7defec5483192e7461 [file] [log] [blame]
/*
* 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));
}