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/sparc/include/psl.h | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/arch/sparc/include/psl.h')
-rw-r--r-- | sys/arch/sparc/include/psl.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sys/arch/sparc/include/psl.h b/sys/arch/sparc/include/psl.h index 8959f9f1072..11ee3b022b2 100644 --- a/sys/arch/sparc/include/psl.h +++ b/sys/arch/sparc/include/psl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: psl.h,v 1.8 2001/12/19 08:58:05 art Exp $ */ +/* $OpenBSD: psl.h,v 1.9 2002/03/14 01:26:43 millert Exp $ */ /* $NetBSD: psl.h,v 1.12 1997/03/10 21:49:11 pk Exp $ */ /* @@ -80,12 +80,12 @@ #if defined(_KERNEL) && !defined(_LOCORE) -static __inline int getpsr __P((void)); -static __inline void setpsr __P((int)); -static __inline int spl0 __P((void)); -static __inline int splhigh __P((void)); -static __inline void splx __P((int)); -static __inline int getmid __P((void)); +static __inline int getpsr(void); +static __inline void setpsr(int); +static __inline int spl0(void); +static __inline int splhigh(void); +static __inline void splx(int); +static __inline int getmid(void); /* * GCC pseudo-functions for manipulating PSR (primarily PIL field). @@ -142,7 +142,7 @@ static __inline int spl0() * into the ipl field.) */ #define SPL(name, newipl) \ -static __inline int name __P((void)); \ +static __inline int name(void); \ static __inline int name() \ { \ int psr, oldipl; \ @@ -156,7 +156,7 @@ static __inline int name() \ } /* A non-priority-decreasing version of SPL */ #define SPLHOLD(name, newipl) \ -static __inline int name __P((void)); \ +static __inline int name(void); \ static __inline int name() \ { \ int psr, oldipl; \ |