diff options
author | stijn <stinos@zoho.com> | 2014-05-10 10:42:40 +0200 |
---|---|---|
committer | stijn <stinos@zoho.com> | 2014-05-10 10:42:40 +0200 |
commit | f45a83d7fc964b10acc5d7d0da65a8157489562f (patch) | |
tree | 427c6866161257e06465e77a9bba378c97c142fc /windows/init.c | |
parent | 6e8085b425a9d02ac3e204651e2c9d8de9a23a85 (diff) |
mingw: Fix compilation issues
- use lowercase windows.h
- fix for mingw32 using preprocessor-unfriendly definition of CLOCKS_PER_SEC
Diffstat (limited to 'windows/init.c')
-rw-r--r-- | windows/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/windows/init.c b/windows/init.c index 69f1026bb..a370c464e 100644 --- a/windows/init.c +++ b/windows/init.c @@ -26,7 +26,7 @@ #include <stdlib.h> #include <stdio.h> -#include <Windows.h> +#include <windows.h> HANDLE hSleepEvent = NULL; |