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