ferror.c 147 B

123456789101112
  1. /*
  2. * ferror .c - test if an error on a stream occurred
  3. */
  4. /* $Id$ */
  5. #include <stdio.h>
  6. int
  7. (ferror)(FILE *stream)
  8. {
  9. return ferror(stream);
  10. }