]> pd.if.org Git - pdclib/blobdiff - functions/string/strcoll.c
Whitespace cleanups.
[pdclib] / functions / string / strcoll.c
index 16a5680b610c14ea5aaf078f60ced375095753b8..6b012b7a29a451a5542032d16979ecb652d79baf 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* strcoll( const char *, const char * )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -25,7 +23,8 @@ int strcoll( const char * s1, const char * s2 )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+
+#include "_PDCLIB_test.h"
 
 int main( void )
 {
@@ -38,4 +37,5 @@ int main( void )
     TESTCASE( strcmp( abcde, empty ) > 0 );
     return TEST_RESULTS;
 }
+
 #endif