]> pd.if.org Git - pdclib/blobdiff - functions/string/strncmp.c
Porting current working set from CVS.
[pdclib] / functions / string / strncmp.c
index 286d41ed6baedaf951428f918828eb9e548a9bdd..0ba2bee63a7a86a5d7903cb70133cdf58e425708 100644 (file)
@@ -35,12 +35,11 @@ int strncmp( const char * s1, const char * s2, size_t n )
 #ifdef TEST
 #include <_PDCLIB_test.h>
 
-int main()
+int main( void )
 {
     char cmpabcde[] = "abcde";
     char empty[] = "";
     char x[] = "x";
-    BEGIN_TESTS;
     TESTCASE( strncmp( abcde, cmpabcde, 5 ) == 0 );
     TESTCASE( strncmp( abcde, abcdx, 5 ) < 0 );
     TESTCASE( strncmp( abcdx, abcde, 5 ) > 0 );