diff options
Diffstat (limited to 'kern/syscall_emulation.h')
-rw-r--r-- | kern/syscall_emulation.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kern/syscall_emulation.h b/kern/syscall_emulation.h index 5ebe2e1..501b0a8 100644 --- a/kern/syscall_emulation.h +++ b/kern/syscall_emulation.h @@ -30,7 +30,7 @@ #ifndef _KERN_SYSCALL_EMULATION_H_ #define _KERN_SYSCALL_EMULATION_H_ -#ifndef ASSEMBLER +#ifndef __ASSEMBLER__ #include <mach/machine/vm_types.h> #include <kern/lock.h> @@ -56,6 +56,6 @@ typedef vm_offset_t *emulation_vector_t; /* Variable-length array */ #define EML_MOD (err_kern|err_sub(2)) #define EML_BAD_TASK (EML_MOD|0x0001) #define EML_BAD_CNT (EML_MOD|0x0002) -#endif /* ASSEMBLER */ +#endif /* __ASSEMBLER__ */ #endif /* _KERN_SYSCALL_EMULATION_H_ */ |