]> pd.if.org Git - pdclib.old/blobdiff - functions/string/strpbrk.c
Porting current working set from CVS.
[pdclib.old] / functions / string / strpbrk.c
index 2bec285abb02b1d724ec6f41525cf95871511528..a6dffeb749da571ca5305efa5cdd080482ab45f2 100644 (file)
@@ -36,9 +36,8 @@ char * strpbrk( const char * s1, const char * s2 )
 #ifdef TEST
 #include <_PDCLIB_test.h>
 
-int main()
+int main( void )
 {
-    BEGIN_TESTS;
     TESTCASE( strpbrk( abcde, "x" ) == NULL );
     TESTCASE( strpbrk( abcde, "xyz" ) == NULL );
     TESTCASE( strpbrk( abcdx, "x" ) == &abcdx[4] );