move prototype of spl0() to param.h
authorkstailey <kstailey@openbsd.org>
Fri, 14 Feb 1997 19:24:04 +0000 (19:24 +0000)
committerkstailey <kstailey@openbsd.org>
Fri, 14 Feb 1997 19:24:04 +0000 (19:24 +0000)
sys/arch/sun3/include/machdep.h
sys/arch/sun3/include/param.h

index 079cbe9..82c3573 100644 (file)
@@ -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));
 
index 58273ce..e331b93 100644 (file)
@@ -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 $   */
 
 /*
 #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())