]> pd.if.org Git - pdclib/blobdiff - functions/stdio/clearerr.c
System includes -> local includes.
[pdclib] / functions / stdio / clearerr.c
index af25029032f1fc4d79ec89654bb4bd690a81592e..61461c9922431d4c2742bcf993cd7a3940f879a9 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* clearerr( FILE * )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -18,7 +16,7 @@ void clearerr( struct _PDCLIB_file_t * stream )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 
 int main( void )
 {
@@ -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 ) );