home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 2 / ctrom_ii_b.zip / ctrom_ii_b / PROGRAM / C / SMALL_C / FERROR.C < prev    next >
Text File  |  1987-10-04  |  256b  |  11 lines

  1. #define NOCCARGC  /* no arg count passing */
  2. #include stdio.h
  3. #include clib.def
  4. extern Ustatus[];
  5. /*
  6. ** Test for error status on fd.
  7. */
  8. ferror(fd) int fd; {
  9.   return (Ustatus[fd] & ERRBIT);
  10.   }
  11.