diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/mach/boolean.h | 4 | ||||
-rw-r--r-- | include/mach/boot.h | 4 | ||||
-rw-r--r-- | include/mach/error.h | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/include/mach/boolean.h b/include/mach/boolean.h index 54028ad..f0f36a2 100644 --- a/include/mach/boolean.h +++ b/include/mach/boolean.h @@ -37,9 +37,9 @@ * Pick up "boolean_t" type definition */ -#ifndef ASSEMBLER +#ifndef __ASSEMBLER__ #include <mach/machine/boolean.h> -#endif /* ASSEMBLER */ +#endif /* __ASSEMBLER__ */ #endif /* _MACH_BOOLEAN_H_ */ diff --git a/include/mach/boot.h b/include/mach/boot.h index 2f3e6c8..d3e141f 100644 --- a/include/mach/boot.h +++ b/include/mach/boot.h @@ -25,7 +25,7 @@ #include <mach/machine/boot.h> -#ifndef ASSEMBLER +#ifndef __ASSEMBLER__ #include <mach/machine/vm_types.h> @@ -65,7 +65,7 @@ struct boot_rendezvous int code; }; -#endif !ASSEMBLER +#endif !__ASSEMBLER__ /* This is the magic value that must appear in boot_module.magic. */ diff --git a/include/mach/error.h b/include/mach/error.h index 1aa6a84..72a2d79 100644 --- a/include/mach/error.h +++ b/include/mach/error.h @@ -87,9 +87,9 @@ /* Flux OS error systems */ #define err_fluke err_system(0x20) /* Fluke API */ -#ifndef ASSEMBLER +#ifndef __ASSEMBLER__ typedef kern_return_t mach_error_t; typedef mach_error_t (* mach_error_fn_t)(); -#endif /* ASSEMBLER */ +#endif /* __ASSEMBLER__ */ #endif /* _MACH_ERROR_H_ */ |