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/macppc/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/macppc/include')
| -rw-r--r-- | sys/arch/macppc/include/adbsys.h | 4 | ||||
| -rw-r--r-- | sys/arch/macppc/include/openpicreg.h | 4 | ||||
| -rw-r--r-- | sys/arch/macppc/include/powerpc.h | 12 |
3 files changed, 10 insertions, 10 deletions
diff --git a/sys/arch/macppc/include/adbsys.h b/sys/arch/macppc/include/adbsys.h index 6888f34019a..bb7f8a32500 100644 --- a/sys/arch/macppc/include/adbsys.h +++ b/sys/arch/macppc/include/adbsys.h @@ -1,4 +1,4 @@ -/* $NetBSD: adbsys.h,v 1.8 2007/01/17 23:36:37 macallan Exp $ */ +/* $NetBSD: adbsys.h,v 1.9 2009/03/14 14:46:02 dsl Exp $ */ /*- * Copyright (C) 1993, 1994 Allen K. Briggs, Chris P. Caputo, @@ -170,6 +170,6 @@ typedef struct adb_listencmd_s{ } adb_listencmd_t; #define ADBIOCLISTENCMD _IOW('A', 133, adb_listencmd_t) -void adb_init __P((void)); +void adb_init(void); #endif /* _ADBSYS_MACHINE_ */ diff --git a/sys/arch/macppc/include/openpicreg.h b/sys/arch/macppc/include/openpicreg.h index c80ca409392..2b2b3b86273 100644 --- a/sys/arch/macppc/include/openpicreg.h +++ b/sys/arch/macppc/include/openpicreg.h @@ -1,5 +1,5 @@ -/* $NetBSD: openpicreg.h,v 1.2 2001/02/05 19:22:24 briggs Exp $ */ +/* $NetBSD: openpicreg.h,v 1.3 2009/03/14 14:46:02 dsl Exp $ */ -void openpic_init __P((void)); +void openpic_init(void); #include <powerpc/openpicreg.h> diff --git a/sys/arch/macppc/include/powerpc.h b/sys/arch/macppc/include/powerpc.h index 404b0fd904c..74c36ff5d47 100644 --- a/sys/arch/macppc/include/powerpc.h +++ b/sys/arch/macppc/include/powerpc.h @@ -1,4 +1,4 @@ -/* $NetBSD: powerpc.h,v 1.6 2006/08/05 21:26:48 sanjayl Exp $ */ +/* $NetBSD: powerpc.h,v 1.7 2009/03/14 14:46:02 dsl Exp $ */ /* * Copyright (C) 1996 Wolfgang Solfrank. @@ -41,18 +41,18 @@ struct mem_region { psize_t size; }__attribute__((packed)); -void mem_regions __P((struct mem_region **, struct mem_region **)); +void mem_regions(struct mem_region **, struct mem_region **); /* * These two functions get used solely in boot() in machdep.c. * * Not sure whether boot itself should be implementation dependent instead. XXX */ -void ppc_exit __P((void)) __attribute__((__noreturn__)); -void ppc_boot __P((char *bootspec)) __attribute__((__noreturn__)); +void ppc_exit(void) __attribute__((__noreturn__)); +void ppc_boot(char *bootspec) __attribute__((__noreturn__)); -int dk_match __P((char *name)); +int dk_match(char *name); -void ofrootfound __P((void)); +void ofrootfound(void); #endif /* _MACHINE_POWERPC_H_ */ |
