msvcr120/tests: Make test_lconv*() static.
This commit is contained in:
parent
ea932fbcc1
commit
1788674bdb
|
@ -79,7 +79,7 @@ static BOOL init(void)
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
void test_lconv_helper(const char *locstr)
|
static void test_lconv_helper(const char *locstr)
|
||||||
{
|
{
|
||||||
struct MSVCRT_lconv *lconv;
|
struct MSVCRT_lconv *lconv;
|
||||||
char mbs[256];
|
char mbs[256];
|
||||||
|
@ -133,7 +133,7 @@ void test_lconv_helper(const char *locstr)
|
||||||
ok(strcmp(mbs, lconv->negative_sign) == 0, "%s: negative_sign\n", locstr);
|
ok(strcmp(mbs, lconv->negative_sign) == 0, "%s: negative_sign\n", locstr);
|
||||||
}
|
}
|
||||||
|
|
||||||
void test_lconv(void)
|
static void test_lconv(void)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
const char *locstrs[] =
|
const char *locstrs[] =
|
||||||
|
|
Loading…
Reference in New Issue