Subversion Repositories Kolibri OS

Rev

Rev 4874 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4874 Rev 4921
Line 59... Line 59...
59
 
59
 
60
struct tm *
60
struct tm *
61
_DEFUN (gmtime, (tim_p),
61
_DEFUN (gmtime, (tim_p),
62
	_CONST time_t * tim_p)
62
	_CONST time_t * tim_p)
-
 
63
{
-
 
64
  struct _reent *reent = _REENT;
63
{
65
 
64
  _REENT_CHECK_TM(_REENT);
66
  _REENT_CHECK_TM(reent);
65
  return gmtime_r (tim_p, (struct tm *)_REENT_TM(_REENT));
67
  return gmtime_r (tim_p, (struct tm *)_REENT_TM(reent));
Line 66... Line 68...
66
}
68
}