msvcrt/tests: Clean up a temp file.

This commit is contained in:
Alexandre Julliard 2006-11-14 12:00:38 +01:00
parent dc0c3677cd
commit 63b62dc50b
1 changed files with 1 additions and 0 deletions

View File

@ -292,6 +292,7 @@ static void test_fgetc( void )
ret = fgetc(tempfh);
ok(ich == ret, "Second fgetc expected %x got %x\n", ich, ret);
fclose(tempfh);
unlink(tempf);
}
static void test_fgetwc( void )