diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-09-21 02:19:32 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-09-21 02:19:32 +0000 |
commit | a7cd33af9315f17d599f1f929772ce12d865ab84 (patch) | |
tree | b6b6cb45954ce8c9623b099426100f7dc4d26429 /sys/arch/mvme88k/include | |
parent | e1e2f3d5657dbc8713f513d28170eeaa86d76e52 (diff) |
Don't protect useful macro definitions with #ifdef _LOCORE, as libc needs
some of them.
Diffstat (limited to 'sys/arch/mvme88k/include')
-rw-r--r-- | sys/arch/mvme88k/include/asm.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/arch/mvme88k/include/asm.h b/sys/arch/mvme88k/include/asm.h index 067bdeaf362..b43bc8b1d1e 100644 --- a/sys/arch/mvme88k/include/asm.h +++ b/sys/arch/mvme88k/include/asm.h @@ -1,4 +1,4 @@ -/* $OpenBSD: asm.h,v 1.13 2001/08/24 22:50:03 miod Exp $ */ +/* $OpenBSD: asm.h,v 1.14 2001/09/21 02:19:31 miod Exp $ */ /* * Mach Operating System @@ -30,7 +30,6 @@ #ifndef __MACHINE_M88K_ASM_H__ #define __MACHINE_M88K_ASM_H__ -#ifdef _LOCORE #ifdef __STDC__ #define _C_LABEL(name) _ ## name #else @@ -63,8 +62,6 @@ #define ASBSS(name, size) \ .comm _ASM_LABEL(name), size -#endif /* _LOCORE */ - #define RTE NOP ; rte #define PID cr0 |