diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-02-14 19:24:06 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-02-14 19:24:06 +0000 |
commit | f6cd082f6b276457cd250717bcd767c0a0bd84e5 (patch) | |
tree | f21907ff5f8a34812f7b519c7f506840d472c545 | |
parent | 4f0906bd25a6e2c37ba50d5921a3ee129001560e (diff) |
move prototype of spl0() to param.h
-rw-r--r-- | sys/arch/sun3/include/machdep.h | 4 | ||||
-rw-r--r-- | sys/arch/sun3/include/param.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/sun3/include/machdep.h b/sys/arch/sun3/include/machdep.h index 079cbe9206c..82c3573552a 100644 --- a/sys/arch/sun3/include/machdep.h +++ b/sys/arch/sun3/include/machdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.h,v 1.4 1997/02/14 19:08:21 kstailey Exp $ */ +/* $OpenBSD: machdep.h,v 1.5 1997/02/14 19:24:04 kstailey Exp $ */ /* * Copyright (c) 1994 Gordon W. Ross * Copyright (c) 1993 Adam Glass @@ -137,8 +137,6 @@ void sun3_mon_reboot __P((char *)); void sun3_pmeg_init __P((void)); void sun3_reserve_pmeg __P((int pmeg_num)); -void spl0 __P((void)); - void swapconf __P((void)); void swapgeneric __P((void)); diff --git a/sys/arch/sun3/include/param.h b/sys/arch/sun3/include/param.h index 58273ce19a2..e331b93b7e5 100644 --- a/sys/arch/sun3/include/param.h +++ b/sys/arch/sun3/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.11 1997/02/14 18:15:27 kstailey Exp $ */ +/* $OpenBSD: param.h,v 1.12 1997/02/14 19:24:05 kstailey Exp $ */ /* $NetBSD: param.h,v 1.34 1996/03/04 05:04:40 cgd Exp $ */ /* @@ -206,6 +206,8 @@ #define splhigh() spl7() #define splsched() spl7() +void spl0 __P((void)); /* XXX where should this go? */ + /* watch out for side effects */ #define splx(s) (s & PSL_IPL ? _spl(s) : spl0()) |