2013-12-15 09:09:20 +01:00
|
|
|
/*
|
|
|
|
* gmtime_r.c
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
#include "local.h"
|
|
|
|
|
|
|
|
struct tm *
|
|
|
|
_DEFUN (gmtime_r, (tim_p, res),
|
2014-05-11 00:12:19 +02:00
|
|
|
_CONST time_t *__restrict tim_p _AND
|
|
|
|
struct tm *__restrict res)
|
2013-12-15 09:09:20 +01:00
|
|
|
{
|
|
|
|
return (_mktm_r (tim_p, res, 1));
|
|
|
|
}
|