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 /sys/arch/sun3/include/param.h | |
parent | 4f0906bd25a6e2c37ba50d5921a3ee129001560e (diff) |
move prototype of spl0() to param.h
Diffstat (limited to 'sys/arch/sun3/include/param.h')
-rw-r--r-- | sys/arch/sun3/include/param.h | 4 |
1 files changed, 3 insertions, 1 deletions
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()) |