Index: test/functionalities/process_launch/print_cwd.cpp =================================================================== --- test/functionalities/process_launch/print_cwd.cpp +++ test/functionalities/process_launch/print_cwd.cpp @@ -1,5 +1,13 @@ #include + +#ifdef _WIN32 +#define _CRT_NONSTDC_NO_WARNINGS +#include +#undef getcwd +#define getcwd(buffer, length) _getcwd(buffer, length) +#else #include +#endif int main (int argc, char **argv)