Code style/whitespace cleanup; remove obsolete headers.

And move the MAP_ANON redefinition from py/asmx64.c to unix/alloc.c.
This commit is contained in:
Damien George
2014-09-03 22:47:23 +01:00
parent a669cbc690
commit dda46460ff
6 changed files with 13 additions and 19 deletions

View File

@@ -394,7 +394,7 @@ STATIC void emit_native_end_pass(emit_t *emit) {
void *f = asm_thumb_get_code(emit->as);
mp_uint_t f_len = asm_thumb_get_code_size(emit->as);
#elif N_ARM
void *f = asm_arm_get_code(emit->as);
void *f = asm_arm_get_code(emit->as);
mp_uint_t f_len = asm_arm_get_code_size(emit->as);
#endif