forked from KolibriOS/kolibrios
2336060a0c
git-svn-id: svn://kolibrios.org@1906 a494cfbc-eb01-0410-851d-a64ba20cac60
15 lines
203 B
C
15 lines
203 B
C
/*
|
|
* 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));
|
|
}
|