diff options
author | bde <bde@FreeBSD.org> | 1995-08-26 20:46:43 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-08-26 20:46:43 +0000 |
commit | 6830acbbd7841c0d377302abd56adc02b02d2b69 (patch) | |
tree | 58560a5835a06d90fb647831b9a8774875bbdbe1 /sys/i386/include | |
parent | 3c607d00a4e224d432423cc55b0c6ba9cf57a38d (diff) | |
download | FreeBSD-src-6830acbbd7841c0d377302abd56adc02b02d2b69.zip FreeBSD-src-6830acbbd7841c0d377302abd56adc02b02d2b69.tar.gz |
Don't declare a nonexistent function.
Fix formatting of recent changes.
Diffstat (limited to 'sys/i386/include')
-rw-r--r-- | sys/i386/include/spl.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/i386/include/spl.h b/sys/i386/include/spl.h index 5cbffeb..5c4e49a 100644 --- a/sys/i386/include/spl.h +++ b/sys/i386/include/spl.h @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: spl.h,v 1.9 1995/08/08 04:50:50 dyson Exp $ + * $Id: spl.h,v 1.10 1995/08/09 02:39:32 dyson Exp $ */ #ifndef _MACHINE_IPL_H_ @@ -94,8 +94,6 @@ extern unsigned tty_imask; /* group of interrupts masked with spltty() */ #define schedsofttty() (*(unsigned *)&idelayed |= SWI_TTY_PENDING) -void unpend_V __P((void)); - #ifdef __GNUC__ void splz __P((void)); @@ -105,7 +103,7 @@ static __inline int name(void) \ { \ unsigned x; \ \ - __asm __volatile("":::"memory"); \ + __asm __volatile("" : : : "memory"); \ x = cpl; \ set_cpl; \ return (x); \ |