Hi,
I am using Intel C++ with Visual Studio Community 2015, When I compile C functions that call the open, read, lseek etc POSIX functions in Windows, I got messages saying 'warning #266 function "lseek" declared implicitly' for example.
I found from Microsoft's documentations that suggest using _open, _read, _lseek instead. Is this the only solution? Does Intel C++ come with its own C run time libraries that have the lseek etc functions?
HCL