/* * ferror .c - test if an error on a stream occurred */ /* $Id$ */ #include <stdio.h> int (ferror)(FILE *stream) { return ferror(stream); }