From 81300aad37ab360360cccdc3c6a3dccaa40aab84 Mon Sep 17 00:00:00 2001 From: "wtc%netscape.com" Date: Thu, 1 Nov 2001 00:02:16 +0000 Subject: [PATCH] Use PL_strcmp instead of strcmp to avoid having to include . git-svn-id: svn://10.0.0.236/trunk@106880 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/nsprpub/lib/tests/string.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/nsprpub/lib/tests/string.c b/mozilla/nsprpub/lib/tests/string.c index 0e2c3a55491..ec839752604 100644 --- a/mozilla/nsprpub/lib/tests/string.c +++ b/mozilla/nsprpub/lib/tests/string.c @@ -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;