]> pd.if.org Git - pdclib/blobdiff - functions/string/strerror.c
Whitespace cleanups.
[pdclib] / functions / string / strerror.c
index b0ced5dba5d308ba904276973f32c53575004009..59747f1d8491dc48b934dc398c2968d9f7f75500 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* strerror( int )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -28,7 +26,8 @@ char * strerror( int errnum )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+
+#include "_PDCLIB_test.h"
 
 #include <stdio.h>
 #include <errno.h>
@@ -38,4 +37,5 @@ int main( void )
     TESTCASE( strerror( ERANGE ) != strerror( EDOM ) );
     return TEST_RESULTS;
 }
+
 #endif