X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Fclearerr.c;h=5664bbfcd4b272ac7c5c1217a04f43054887a1be;hb=b1fc26afebd4d557ff89a44bc21767a8704c3809;hp=af25029032f1fc4d79ec89654bb4bd690a81592e;hpb=6c8c4f80e32177f27f89b4aff3b7568a7afd4041;p=pdclib diff --git a/functions/stdio/clearerr.c b/functions/stdio/clearerr.c index af25029..5664bbf 100644 --- a/functions/stdio/clearerr.c +++ b/functions/stdio/clearerr.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* clearerr( FILE * ) This file is part of the Public Domain C Library (PDCLib). @@ -28,6 +26,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 ) );