diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2003-01-04 02:14:46 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2003-01-04 02:14:46 +0000 |
commit | 86523a96c953476bb61cd0ca6209a796c7eb9c59 (patch) | |
tree | ff9551f58954edb826b863c5800bbfa7fb84c331 /sys/arch/mvme88k | |
parent | 27102e11b2aa1c9c0167357614263e22d1dad90b (diff) |
Don't define splassert goo if _LOCORE
Diffstat (limited to 'sys/arch/mvme88k')
-rw-r--r-- | sys/arch/mvme88k/include/intr.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/mvme88k/include/intr.h b/sys/arch/mvme88k/include/intr.h index 28c7f9379ed..19bc04f86d5 100644 --- a/sys/arch/mvme88k/include/intr.h +++ b/sys/arch/mvme88k/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.10 2003/01/03 23:17:42 miod Exp $ */ +/* $OpenBSD: intr.h,v 1.11 2003/01/04 02:14:45 miod Exp $ */ /* * Copyright (C) 2000 Steve Murphree, Jr. * All rights reserved. @@ -87,7 +87,6 @@ unsigned setipl(unsigned level); unsigned db_setipl(unsigned level); #endif int spl0(void); -#endif /* _LOCORE */ /* needs major cleanup - XXX nivas */ @@ -109,6 +108,8 @@ void splassert_check(int, const char *); #define splassert(wantipl) do { /* nothing */ } while (0) #endif +#endif /* _LOCORE */ + #if 0 spl0 is a function by itself. I really am serious about the clean up above... |