Commit 1788674b authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

msvcr120/tests: Make test_lconv*() static.

parent ea932fbc
......@@ -79,7 +79,7 @@ static BOOL init(void)
return TRUE;
}
void test_lconv_helper(const char *locstr)
static void test_lconv_helper(const char *locstr)
{
struct MSVCRT_lconv *lconv;
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);
}
void test_lconv(void)
static void test_lconv(void)
{
int i;
const char *locstrs[] =
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment