“sys/time.h” Replacement for Windows

https://www.codefull.org/2015/12/systime-h-replacement-for-windows/

Some C/C++ code targeted for GNU family compilers fail to compile under Windows due to the dependency on sys/time.h header file. The repository here has provided a neat implementation for it. Basically you need these three files: time.htimes.h and times.cpp. I have included them here (in case the repository ever went dead). Note that this is not my code and the original license of the code was LGPL.

sys/time.h:

sys/times.h:

sys/times.cpp:

 

 

你可能感兴趣的:(VS)