diff options
| author | dsl <dsl@NetBSD.org> | 2009-03-14 14:45:51 +0000 |
|---|---|---|
| committer | dsl <dsl@NetBSD.org> | 2009-03-14 14:45:51 +0000 |
| commit | 02cdf4d2c869ecfa1ae5484cf77eefe2fbcc6d94 (patch) | |
| tree | 9a02e625d403e5fcedfdc6be4803e2404356bf31 /sys/arch/cesfic/include | |
| parent | dfbb3f921a23a1aba4463f31ef9233ac94ce606c (diff) | |
Remove all the __P() from sys (excluding sys/dist)
Diff checked with grep and MK1 eyeball.
i386 and amd64 GENERIC and sys still build.
Diffstat (limited to 'sys/arch/cesfic/include')
| -rw-r--r-- | sys/arch/cesfic/include/autoconf.h | 6 | ||||
| -rw-r--r-- | sys/arch/cesfic/include/cpu.h | 18 | ||||
| -rw-r--r-- | sys/arch/cesfic/include/intr.h | 4 | ||||
| -rw-r--r-- | sys/arch/cesfic/include/param.h | 4 |
4 files changed, 16 insertions, 16 deletions
diff --git a/sys/arch/cesfic/include/autoconf.h b/sys/arch/cesfic/include/autoconf.h index 6c6af58d0e5..61ffe5a3bd9 100644 --- a/sys/arch/cesfic/include/autoconf.h +++ b/sys/arch/cesfic/include/autoconf.h @@ -1,9 +1,9 @@ -/* $NetBSD: autoconf.h,v 1.1 2001/05/14 18:23:09 drochner Exp $ */ +/* $NetBSD: autoconf.h,v 1.2 2009/03/14 14:45:58 dsl Exp $ */ #ifdef _KERNEL -int mainbus_map __P((u_long, int, int, void**)); +int mainbus_map(u_long, int, int, void**); -int cesfic_getetheraddr __P((unsigned char *)); +int cesfic_getetheraddr(unsigned char *); #endif /* _KERNEL */ diff --git a/sys/arch/cesfic/include/cpu.h b/sys/arch/cesfic/include/cpu.h index cb9258f89f3..4d74918e4f9 100644 --- a/sys/arch/cesfic/include/cpu.h +++ b/sys/arch/cesfic/include/cpu.h @@ -1,4 +1,4 @@ -/* $NetBSD: cpu.h,v 1.21 2008/02/27 18:26:15 xtraeme Exp $ */ +/* $NetBSD: cpu.h,v 1.22 2009/03/14 14:45:58 dsl Exp $ */ /* * Copyright (c) 1982, 1990, 1993 @@ -180,19 +180,19 @@ extern int astpending; /* need to trap before returning to user mode */ struct fpframe; /* locore.s functions */ -void m68881_save __P((struct fpframe *)); -void m68881_restore __P((struct fpframe *)); -int suline __P((void *, void *)); -void loadustp __P((int)); +void m68881_save(struct fpframe *); +void m68881_restore(struct fpframe *); +int suline(void *, void *); +void loadustp(int); -void doboot __P((void)) +void doboot(void) __attribute__((__noreturn__)); /* machdep.c functions */ -int badaddr __P((void *)); -int badbaddr __P((void *)); +int badaddr(void *); +int badbaddr(void *); -void kgdb_panic __P((void)); +void kgdb_panic(void); /* what is this supposed to do? i.e. how is it different than startrtclock? */ #define enablertclock() diff --git a/sys/arch/cesfic/include/intr.h b/sys/arch/cesfic/include/intr.h index 3dd685f451d..04c34ae5de5 100644 --- a/sys/arch/cesfic/include/intr.h +++ b/sys/arch/cesfic/include/intr.h @@ -1,4 +1,4 @@ -/* $NetBSD: intr.h,v 1.10 2008/06/22 16:34:15 tsutsui Exp $ */ +/* $NetBSD: intr.h,v 1.11 2009/03/14 14:45:58 dsl Exp $ */ /* * Copyright (c) 1982, 1986, 1990, 1993 @@ -106,7 +106,7 @@ /* watch out for side effects */ #define splx(s) (s & PSL_IPL ? _spl(s) : spl0()) -int spl0 __P((void)); +int spl0(void); #define IPL_NONE 0 #define IPL_SOFTCLOCK 1 diff --git a/sys/arch/cesfic/include/param.h b/sys/arch/cesfic/include/param.h index 8b7c1b7e861..f0be0b7ef8f 100644 --- a/sys/arch/cesfic/include/param.h +++ b/sys/arch/cesfic/include/param.h @@ -1,4 +1,4 @@ -/* $NetBSD: param.h,v 1.7 2005/12/11 12:17:05 christos Exp $ */ +/* $NetBSD: param.h,v 1.8 2009/03/14 14:45:58 dsl Exp $ */ /* * Copyright (c) 1982, 1986, 1990, 1993 @@ -130,5 +130,5 @@ #define delay(us) _delay((us) << 8) #define DELAY(us) delay(us) -void _delay __P((u_int)); +void _delay(u_int); #endif /* _KERNEL && !_LOCORE */ |
