]> pd.if.org Git - pdclib/blobdiff - functions/stdio/fflush.c
Whitespace cleanups.
[pdclib] / functions / stdio / fflush.c
index 67dba7c8f2f6cb84bfe2c903fa33b5fe168624d1..5a0bc3662b57d725e3411afd6b0a2dd1e52c0617 100644 (file)
@@ -7,7 +7,8 @@
 #include <stdio.h>
 
 #ifndef REGTEST
-#include <_PDCLIB_glue.h>
+
+#include "_PDCLIB_glue.h"
 
 extern struct _PDCLIB_file_t * _PDCLIB_filelist;
 
@@ -36,11 +37,12 @@ int fflush( struct _PDCLIB_file_t * stream )
         return _PDCLIB_flushbuffer( stream );
     }
 }
-                
+
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+
+#include "_PDCLIB_test.h"
 
 int main( void )
 {
@@ -49,4 +51,3 @@ int main( void )
 }
 
 #endif
-