diff options
Diffstat (limited to 'src/ac.c')
-rw-r--r-- | src/ac.c | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -17,6 +17,13 @@ #include <stdlib.h> +#ifdef _WIN32 +#include <Windows.h> +#include <werapi.h> +#else +#include <sys/mman.h> +#endif + #include "alias.h" #include "bind.h" #include "chunklets/fastspin.h" @@ -41,10 +48,6 @@ #include "x86.h" #include "x86util.h" -#ifdef _WIN32 -#include <werapi.h> // must be after Windows.h (via os.h) -#endif - FEATURE() REQUIRE(bind) REQUIRE(democustom) |