Subversion Repositories Kolibri OS

Rev

Rev 4874 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4874 Rev 4921
Line 63... Line 63...
63
_VOID
63
_VOID
64
_DEFUN(clearerr, (fp),
64
_DEFUN(clearerr, (fp),
65
       FILE * fp)
65
       FILE * fp)
66
{
66
{
67
  CHECK_INIT(_REENT, fp);
67
  CHECK_INIT(_REENT, fp);
68
  _flockfile (fp);
68
  _newlib_flockfile_start (fp);
69
  __sclearerr (fp);
69
  __sclearerr (fp);
70
  _funlockfile (fp);
70
  _newlib_flockfile_end (fp);
71
}
71
}