]> pd.if.org Git - pdclib.old/blobdiff - functions/string/strncpy.c
Porting current working set from CVS.
[pdclib.old] / functions / string / strncpy.c
index e1f34a7f8558b83734b0ce8cb967c809120de74e..a5671b6313bc0ae1e2f1af03fcdd1a94123df1b2 100644 (file)
@@ -34,10 +34,9 @@ char * strncpy( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, si
 #ifdef TEST
 #include <_PDCLIB_test.h>
 
-int main()
+int main( void )
 {
     char s[] = "xxxxxxx";
-    BEGIN_TESTS;
     TESTCASE( strncpy( s, "", 1 ) == s );
     TESTCASE( s[0] == '\0' );
     TESTCASE( s[1] == 'x' );