msvcr120/tests: Make test_lconv*() static.

This commit is contained in:
Francois Gouget 2014-12-05 12:20:54 +01:00 committed by Alexandre Julliard
parent ea932fbcc1
commit 1788674bdb
1 changed files with 2 additions and 2 deletions

View File

@ -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[] =