Use PL_strcmp instead of strcmp to avoid having to include <string.h>.

git-svn-id: svn://10.0.0.236/trunk@106880 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
wtc%netscape.com 2001-11-01 00:02:16 +00:00
parent 8d2569a64b
commit 81300aad37

View File

@ -3038,7 +3038,7 @@ PRBool test_031(void)
s1 = string;
while( (token = PL_strtok_r(s1, s2, &lasts)) != NULL)
{
if( strcmp(token, tokens[i]) != 0 )
if( PL_strcmp(token, tokens[i]) != 0 )
{
printf("FAIL wrong token scanned\n");
return PR_FALSE;