]> pd.if.org Git - pdclib/blobdiff - functions/string/strcmp.c
Whitespace cleanups.
[pdclib] / functions / string / strcmp.c
index 5202771a67d52f266000746cf63c7608cd9b7682..639fc10259c24a6bd3eec3d24b59ec0e4420c203 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* strcmp( const char *, const char * )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -23,7 +21,8 @@ int strcmp( 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, cmpabcd_ ) < 0 );
     return TEST_RESULTS;
 }
+
 #endif