msvcrt/tests: Make test_dup2() static.

This commit is contained in:
Francois Gouget 2010-06-22 17:51:13 +02:00 committed by Alexandre Julliard
parent e39b983f49
commit 1f07f583cf

View File

@ -1414,7 +1414,7 @@ static void test_unlink(void)
rmdir("test_unlink");
}
void test_dup2(void)
static void test_dup2(void)
{
ok(-1 == _dup2(0, -1), "expected _dup2 to fail when second arg is negative\n" );
}