]> pd.if.org Git - pdclib/blobdiff - functions/string/strcmp.c
Whitespace cleanups.
[pdclib] / functions / string / strcmp.c
index 483260cf3974d4c366fa270040a5afdcb5f08625..639fc10259c24a6bd3eec3d24b59ec0e4420c203 100644 (file)
@@ -21,6 +21,7 @@ int strcmp( const char * s1, const char * s2 )
 #endif
 
 #ifdef TEST
+
 #include "_PDCLIB_test.h"
 
 int main( void )
@@ -36,4 +37,5 @@ int main( void )
     TESTCASE( strcmp( abcde, cmpabcd_ ) < 0 );
     return TEST_RESULTS;
 }
+
 #endif