Subversion Repositories Kolibri OS

Rev

Rev 4874 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

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