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/netkey/key_debug.c | |
| 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/netkey/key_debug.c')
| -rw-r--r-- | sys/netkey/key_debug.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/sys/netkey/key_debug.c b/sys/netkey/key_debug.c index 1f61eeffee5..458fb231715 100644 --- a/sys/netkey/key_debug.c +++ b/sys/netkey/key_debug.c @@ -1,4 +1,4 @@ -/* $NetBSD: key_debug.c,v 1.33 2007/03/04 06:03:34 christos Exp $ */ +/* $NetBSD: key_debug.c,v 1.34 2009/03/14 14:46:11 dsl Exp $ */ /* $KAME: key_debug.c,v 1.36 2003/06/27 06:46:01 itojun Exp $ */ /* @@ -31,7 +31,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: key_debug.c,v 1.33 2007/03/04 06:03:34 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: key_debug.c,v 1.34 2009/03/14 14:46:11 dsl Exp $"); #ifdef _KERNEL #include "opt_inet.h" @@ -64,23 +64,23 @@ struct typestr { }; #define TYPESTR(x) { "SADB_" #x, SADB_ ## x } -static const char *kdebug_typestr __P((u_int, const struct typestr *)); -static const char *kdebug_sadb_msg_typestr __P((u_int)); -static const char *kdebug_sadb_ext_typestr __P((u_int)); -static void kdebug_sadb_prop __P((struct sadb_ext *)); -static void kdebug_sadb_identity __P((struct sadb_ext *)); -static void kdebug_sadb_supported __P((struct sadb_ext *)); -static void kdebug_sadb_lifetime __P((struct sadb_ext *)); -static void kdebug_sadb_sa __P((struct sadb_ext *)); -static void kdebug_sadb_address __P((struct sadb_ext *)); -static void kdebug_sadb_key __P((struct sadb_ext *)); -static void kdebug_sadb_x_sa2 __P((struct sadb_ext *)); +static const char *kdebug_typestr(u_int, const struct typestr *); +static const char *kdebug_sadb_msg_typestr(u_int); +static const char *kdebug_sadb_ext_typestr(u_int); +static void kdebug_sadb_prop(struct sadb_ext *); +static void kdebug_sadb_identity(struct sadb_ext *); +static void kdebug_sadb_supported(struct sadb_ext *); +static void kdebug_sadb_lifetime(struct sadb_ext *); +static void kdebug_sadb_sa(struct sadb_ext *); +static void kdebug_sadb_address(struct sadb_ext *); +static void kdebug_sadb_key(struct sadb_ext *); +static void kdebug_sadb_x_sa2(struct sadb_ext *); #ifdef SADB_X_EXT_TAG -static void kdebug_sadb_x_tag __P((struct sadb_ext *)); +static void kdebug_sadb_x_tag(struct sadb_ext *); #endif #ifdef _KERNEL -static void kdebug_secreplay __P((struct secreplay *)); +static void kdebug_secreplay(struct secreplay *); #endif #ifndef _KERNEL |
