]> pd.if.org Git - pdclib/blobdiff - functions/stdio/perror.c
Whitespace cleanups.
[pdclib] / functions / stdio / perror.c
index d38a641bb7e8a6ba3723b92aefc3269afe499faf..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 "_PDCLIB_test.h"
+
 #include <stdlib.h>
 #include <string.h>
 #include <limits.h>