diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
commit | 8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch) | |
tree | ac9a52bace179e17769651fb9f805070d78abe5f /sys/arch/alpha/include/param.h | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/arch/alpha/include/param.h')
-rw-r--r-- | sys/arch/alpha/include/param.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/include/param.h b/sys/arch/alpha/include/param.h index d291e572cbb..a8a4fd7b901 100644 --- a/sys/arch/alpha/include/param.h +++ b/sys/arch/alpha/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.21 2001/12/05 01:57:14 provos Exp $ */ +/* $OpenBSD: param.h,v 1.22 2002/03/14 01:26:27 millert Exp $ */ /* $NetBSD: param.h,v 1.30 2000/06/09 16:03:04 thorpej Exp $ */ /* @@ -165,7 +165,7 @@ void delay(unsigned long); #define DELAY(n) delay(n) /* XXX THE FOLLOWING PROTOTYPE BELONGS IN INTR.H */ -int spl0 __P((void)); /* drop ipl to zero */ +int spl0(void); /* drop ipl to zero */ /* XXX END INTR.H */ /* XXX THE FOLLOWING PROTOTYPE SHOULD BE A BUS.H INTERFACE */ |