diff options
| author | Damien George <damien.p.george@gmail.com> | 2014-01-07 15:20:33 +0000 |
|---|---|---|
| committer | Damien George <damien.p.george@gmail.com> | 2014-01-07 15:20:33 +0000 |
| commit | d3ebe4829d920542e5af462e75179e4f0cadb946 (patch) | |
| tree | 98b13b97030af834ef0a18114007edc43d442acf /py/asmx64.c | |
| parent | 136f67523b10d24dd65cb25e49e07a7e4e5341a1 (diff) | |
Factor and simplify Makefile's and mpconfig, part 2.
Diffstat (limited to 'py/asmx64.c')
| -rw-r--r-- | py/asmx64.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/py/asmx64.c b/py/asmx64.c index 226d4efee..d3158170f 100644 --- a/py/asmx64.c +++ b/py/asmx64.c @@ -1,16 +1,18 @@ #include <stdio.h> #include <assert.h> -#include <sys/types.h> -#include <sys/mman.h> #include <string.h> #include "misc.h" -#include "asmx64.h" #include "mpconfig.h" // wrapper around everything in this file #if MICROPY_EMIT_X64 +#include <sys/types.h> +#include <sys/mman.h> + +#include "asmx64.h" + #if defined(__OpenBSD__) || defined(__MACH__) #define MAP_ANONYMOUS MAP_ANON #endif |
