X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fclearerr.c;h=d54e559fe6a95dbecd241dd6a634917f61cf47f6;hb=e5456e3c2697c4e17fc9aa3439f2e305517b4d96;hp=1adce827e840a6d67bbdb69ee7897bb87700338c;hpb=dcc8a8e99f69e090a03b7b868443addbc0817820;p=pdclib.old diff --git a/functions/stdio/clearerr.c b/functions/stdio/clearerr.c index 1adce82..d54e559 100644 --- a/functions/stdio/clearerr.c +++ b/functions/stdio/clearerr.c @@ -6,3 +6,11 @@ // ---------------------------------------------------------------------------- void clearerr( FILE * stream ) { /* TODO */ }; + +/* PDPC code - unreviewed +{ + stream->errorInd = 0; + stream->eofInd = 0; + return; +} +*/