X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fclearerr.c;h=af50f14f49531523784496424da245fec0c8c81f;hb=a448f97e288aa4bd84fdc8d553b335b8d0efb725;hp=af25029032f1fc4d79ec89654bb4bd690a81592e;hpb=f0c4a925a835e6efd444b2de5406219551dc65d4;p=pdclib.old diff --git a/functions/stdio/clearerr.c b/functions/stdio/clearerr.c index af25029..af50f14 100644 --- a/functions/stdio/clearerr.c +++ b/functions/stdio/clearerr.c @@ -28,6 +28,7 @@ int main( void ) TESTCASE( ! ferror( fh ) ); TESTCASE( ! feof( fh ) ); /* Reading from input stream - should provoke error */ + /* FIXME: Apparently glibc disagrees on this assumption. How to provoke error on glibc? */ TESTCASE( fgetc( fh ) == EOF ); TESTCASE( ferror( fh ) ); TESTCASE( ! feof( fh ) );