]> pd.if.org Git - pdclib/blob - functions/stdio/clearerr.c
Re-import from Subversion.
[pdclib] / functions / stdio / clearerr.c
1 /* ----------------------------------------------------------------------------
2  * $Id$
3  * ----------------------------------------------------------------------------
4  * Public Domain C Library - http://pdclib.sourceforge.net
5  * This code is Public Domain. Use, modify, and redistribute at will.
6  * --------------------------------------------------------------------------*/
7
8 #ifndef __FILE_H
9 #define __FILE_H __FILE_H
10 #include <__FILE.h>
11 #endif // __FILE_H
12
13 void clearerr( FILE * fh )
14 {
15     fh->ErrorIndicator = 0;
16     fh->EOFIndicator = 0;
17     return;
18 }