]> pd.if.org Git - pdclib/blobdiff - functions/stdio/perror.c
Whitespace cleanups.
[pdclib] / functions / stdio / perror.c
index 23ce68bd356cc11e997dcdabf4873b32156b2204..022f82ddcdbd97c9491c53ccf8c90c23c5d080d4 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* perror( const char * )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -7,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 )
 {
@@ -34,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>