mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-20 10:42:21 +00:00
15 lines
189 B
C
15 lines
189 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));
|
|
}
|