summaryrefslogtreecommitdiff
path: root/sys/arch/sandpoint/include
diff options
context:
space:
mode:
authordsl <dsl@NetBSD.org>2009-03-14 14:45:51 +0000
committerdsl <dsl@NetBSD.org>2009-03-14 14:45:51 +0000
commit02cdf4d2c869ecfa1ae5484cf77eefe2fbcc6d94 (patch)
tree9a02e625d403e5fcedfdc6be4803e2404356bf31 /sys/arch/sandpoint/include
parentdfbb3f921a23a1aba4463f31ef9233ac94ce606c (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/sandpoint/include')
-rw-r--r--sys/arch/sandpoint/include/powerpc.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/sandpoint/include/powerpc.h b/sys/arch/sandpoint/include/powerpc.h
index 57892061f8a..805eac70b0b 100644
--- a/sys/arch/sandpoint/include/powerpc.h
+++ b/sys/arch/sandpoint/include/powerpc.h
@@ -1,4 +1,4 @@
-/* $NetBSD: powerpc.h,v 1.3 2005/12/11 12:18:51 christos Exp $ */
+/* $NetBSD: powerpc.h,v 1.4 2009/03/14 14:46:06 dsl Exp $ */
/*
* Copyright (C) 1996 Wolfgang Solfrank.
@@ -38,14 +38,14 @@ struct mem_region {
psize_t size;
};
-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__));
#endif /* _MACHINE_POWERPC_H_ */