Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
  2. #include <stdio.h>
  3. #include <libc/file.h>
  4.  
  5. #undef ferror
  6. int ferror(FILE *stream)
  7. {
  8.   return stream->_flag & _IOERR;
  9. }
  10.