home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / enterprs / cpm / utils / s / smc21lib.lzh / CLEARERR.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-03-25  |  256 b   |  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.