Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gmtime_r.c « time « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fb39238d37c1618c43ef9e7defec5483192e7461 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * 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));
}