home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Guide
/
c-cplusplus-interactive-guide.iso
/
c_ref
/
csource4
/
223_01
/
clearerr.c
< prev
next >
Wrap
Text File
|
1979-12-31
|
384b
|
16 lines
/*
** clearerr.c by F. A. Scacchitti 11/22/84
**
** Clears errors and end of file marks in fd.
**
*/
#include <stdio.h>
clearerr(fd) int fd; {
*(fd + 40) = NULL;
}