Piotr Caban (@piotr) commented about dlls/msvcrt/tests/environ.c:
"Expected _environ pointers to be identical\n" ); } else
skip( "__p__environ() is not available\n" );
skip( "__p__environ() is not available\n" ); /* 32-bit only on windows */
What do you think about changing it to something like: ```c if (sizeof(void*) != sizeof(int)) { ok(!p__p__environ, ...); } else { run the tests } ``` In this case skip() is probably not needed (if it is, it can be changed to win_skip).