]> pd.if.org Git - pdclib/blobdiff - functions/stdio/perror.c
Whitespace cleanups.
[pdclib] / functions / stdio / perror.c
index a5185980dbbb978324858d7732b1d56d856dda79..022f82ddcdbd97c9491c53ccf8c90c23c5d080d4 100644 (file)
@@ -5,12 +5,11 @@
 */
 
 #include <stdio.h>
-
-#ifndef REGTEST
-
 #include <errno.h>
 #include <locale.h>
 
+#ifndef REGTEST
+
 /* TODO: Doing this via a static array is not the way to do it. */
 void perror( const char * s )
 {
@@ -32,7 +31,9 @@ void perror( const char * s )
 #endif
 
 #ifdef TEST
+
 #include "_PDCLIB_test.h"
+
 #include <stdlib.h>
 #include <string.h>
 #include <limits.h>