ack/lang/cem/libcc.ansi/stdio/ferror.c
2018-06-21 22:33:47 +02:00

12 lines
146 B
C

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