Add back Windows.h header

pull/12/head
Izaak Beekman 8 years ago
parent 7b3422ab4e
commit 48662755b7
No known key found for this signature in database
GPG Key ID: A93CE70D8021BD0F

@ -1,4 +1,6 @@
#if ! (defined(_WIN32) || defined(WIN32))
#if (defined(_WIN32) || defined(WIN32))
#include <Windows.h>
#else
#include <sys/time.h>
#endif
#include <stdio.h>
@ -112,7 +114,7 @@ double mpi_wtime()
QueryPerformanceCounter(&tim);
QeryPerformanceFrequency(&freq);
seconds = (double)tim / (double) freq;
seconds = (double)tim / (double)freq;
return(seconds);
#else
struct timeval tt;

Loading…
Cancel
Save