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 55... Line 55...
55
 
55
 
56
char *
56
char *
57
_DEFUN (asctime, (tim_p),
57
_DEFUN (asctime, (tim_p),
58
	_CONST struct tm *tim_p)
58
	_CONST struct tm *tim_p)
-
 
59
{
-
 
60
  struct _reent *reent = _REENT;
59
{
61
 
60
  _REENT_CHECK_ASCTIME_BUF(_REENT);
62
  _REENT_CHECK_ASCTIME_BUF(reent);
61
  return asctime_r (tim_p, _REENT_ASCTIME_BUF(_REENT));
63
  return asctime_r (tim_p, _REENT_ASCTIME_BUF(reent));
Line 62... Line 64...
62
}
64
}