ICU-567 globals need to be static.

X-SVN-Rev: 6763
This commit is contained in:
Yves Arrouye 2001-11-11 05:19:53 +00:00
parent 53c151d024
commit 35bea5d04b

View File

@ -57,10 +57,10 @@ static void iterateTestsWithLevel( const TestNode *root, int len,
static void help ( const char *argv0 );
static int ERRONEOUS_FUNCTION_COUNT = 0;
int ERROR_COUNT = 0;
static int ERROR_COUNT = 0;
static int INDENT_LEVEL = 0;
int VERBOSITY = 0; /* be No-verbose by default */
int ERR_MSG =1; /*error messages will be displayed by default*/
static int VERBOSITY = 0; /* be No-verbose by default */
static int ERR_MSG =1; /*error messages will be displayed by default*/
/*-------------------------------------------*/
/* strncmp that also makes sure there's a \0 at s2[0] */