source: trunk/minix/lib/stdio/clearerr.c@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 242 bytes
Line 
1/*
2 * clearerr.c - clear error and end-of-file indicators of a stream
3 */
4/* $Header: /cvsup/minix/src/lib/stdio/clearerr.c,v 1.1.1.1 2005/04/21 14:56:34 beng Exp $ */
5
6#include <stdio.h>
7
8void
9(clearerr)(FILE *stream)
10{
11 clearerr(stream);
12}
Note: See TracBrowser for help on using the repository browser.