home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / compiler / small_c / byte_sc / clearerr.c < prev    next >
Encoding:
C/C++ Source or Header  |  1987-10-04  |  256 b   |  12 lines

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