diff options
Diffstat (limited to 'i386/include')
-rw-r--r-- | i386/include/mach/i386/kern_return.h | 4 | ||||
-rw-r--r-- | i386/include/mach/i386/vm_types.h | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/i386/include/mach/i386/kern_return.h b/i386/include/mach/i386/kern_return.h index c51915d..8df41ca 100644 --- a/i386/include/mach/i386/kern_return.h +++ b/i386/include/mach/i386/kern_return.h @@ -34,7 +34,7 @@ #ifndef _MACH_I386_KERN_RETURN_H_ #define _MACH_I386_KERN_RETURN_H_ -#ifndef ASSEMBLER +#ifndef __ASSEMBLER__ typedef int kern_return_t; -#endif /* ASSEMBLER */ +#endif /* __ASSEMBLER__ */ #endif /* _MACH_I386_KERN_RETURN_H_ */ diff --git a/i386/include/mach/i386/vm_types.h b/i386/include/mach/i386/vm_types.h index 603bf0c..7fb1bcb 100644 --- a/i386/include/mach/i386/vm_types.h +++ b/i386/include/mach/i386/vm_types.h @@ -34,8 +34,8 @@ #ifndef _MACHINE_VM_TYPES_H_ #define _MACHINE_VM_TYPES_H_ 1 -#ifdef ASSEMBLER -#else /* ASSEMBLER */ +#ifdef __ASSEMBLER__ +#else /* __ASSEMBLER__ */ /* * A natural_t is the type for the native @@ -96,7 +96,7 @@ typedef unsigned long long unsigned64_t; typedef float float32_t; typedef double float64_t; -#endif /* ASSEMBLER */ +#endif /* __ASSEMBLER__ */ /* * If composing messages by hand (please dont) |