Subversion Repositories Kolibri OS

Rev

Rev 4874 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4349 Serge 1
/*
2
 * gmtime_r.c
3
 */
4
 
5
#include 
6
#include "local.h"
7
 
8
struct tm *
9
_DEFUN (gmtime_r, (tim_p, res),
4921 Serge 10
	_CONST time_t *__restrict tim_p _AND
11
	struct tm *__restrict res)
4349 Serge 12
{
13
  return (_mktm_r (tim_p, res, 1));
14
}