00001 /* 00002 * clearerr.c - clear error and end-of-file indicators of a stream 00003 */ 00004 /* $Header: /opt/proj/minix/cvsroot/src/lib/stdio/clearerr.c,v 1.1.1.1 2005/04/21 14:56:34 beng Exp $ */ 00005 00006 #include <stdio.h> 00007 00008 void 00009 (clearerr)(FILE *stream) 00010 { 00011 clearerr(stream); 00012 }
1.4.6