home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / ENTERPRS / CPM / UTILS / S / SMC21LIB.LZH / CLEARERR.C < prev    next >
Text File  |  2000-06-30  |  256b  |  13 lines

  1.  
  2. #define NOCCARGC
  3. #include stdio.h
  4. #include clib.def
  5. extern int _status[];
  6. /*
  7. ** Clear error status for fd.
  8. */
  9. clearerr(fd) int fd; {
  10.   if(_mode(fd)) _status[fd] &= ~ERRBIT;
  11.   }
  12.  
  13.