home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 2 / ctrom_ii_b.zip / ctrom_ii_b / PROGRAM / C / SMALL_C / CLEARERR.C < prev    next >
Text File  |  1987-10-04  |  256b  |  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.