]> pd.if.org Git - pdclib/blobdiff - functions/string/memcmp.c
Whitespace cleanups.
[pdclib] / functions / string / memcmp.c
index 6ed242712ba7a993fcc25802f4322392b5df59cf..3743f781d9b6d9341a17f782f550b0bff469c12f 100644 (file)
@@ -27,7 +27,8 @@ int memcmp( const void * s1, const void * s2, size_t n )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+
+#include "_PDCLIB_test.h"
 
 int main( void )
 {
@@ -38,4 +39,5 @@ int main( void )
     TESTCASE( memcmp( xxxxx, abcde, 1 ) > 0 );
     return 0;
 }
+
 #endif