]> pd.if.org Git - pdclib/blobdiff - functions/string/strcmp.c
Whitespace cleanups.
[pdclib] / functions / string / strcmp.c
index 2edf7eef9043da27e1d0e330b27d4bc1d58d72aa..639fc10259c24a6bd3eec3d24b59ec0e4420c203 100644 (file)
@@ -21,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 )
 {
@@ -36,4 +37,5 @@ int main( void )
     TESTCASE( strcmp( abcde, cmpabcd_ ) < 0 );
     return TEST_RESULTS;
 }
+
 #endif