]> pd.if.org Git - pdclib/blobdiff - functions/stdio/fread.c
Whitespace cleanups.
[pdclib] / functions / stdio / fread.c
index 87b7acc1e5d0cb8c6db156ca3183c4a5a478e1b5..5b093ff6fb2507ced8640c00f6fbcf0345cb78e8 100644 (file)
@@ -5,14 +5,13 @@
 */
 
 #include <stdio.h>
+#include <stdbool.h>
+#include <string.h>
 
 #ifndef REGTEST
 
 #include "_PDCLIB_glue.h"
 
-#include <stdbool.h>
-#include <string.h>
-
 size_t fread( void * _PDCLIB_restrict ptr, size_t size, size_t nmemb, struct _PDCLIB_file_t * _PDCLIB_restrict stream )
 {
     if ( _PDCLIB_prepread( stream ) == EOF )
@@ -42,6 +41,7 @@ size_t fread( void * _PDCLIB_restrict ptr, size_t size, size_t nmemb, struct _PD
 #endif
 
 #ifdef TEST
+
 #include "_PDCLIB_test.h"
 
 int main( void )
@@ -79,4 +79,3 @@ int main( void )
 }
 
 #endif
-