diff options
| author | dsl <dsl@NetBSD.org> | 2007-12-19 20:31:35 +0000 |
|---|---|---|
| committer | dsl <dsl@NetBSD.org> | 2007-12-19 20:31:35 +0000 |
| commit | d975bc8ffaf41e64fe40f6ea7e8bba80f9d45f4d (patch) | |
| tree | e0a0f45d18b64fced80e05da434a2a10e9d364b6 /sys/lkm/compat/linux | |
| parent | f97bd8894f2e6239f9c961d376e8794745b0a1fc (diff) | |
Remove all the __P
Diffstat (limited to 'sys/lkm/compat/linux')
| -rw-r--r-- | sys/lkm/compat/linux/lkminit_emul.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/lkm/compat/linux/lkminit_emul.c b/sys/lkm/compat/linux/lkminit_emul.c index bc91c30e4a5..25e95d1d268 100644 --- a/sys/lkm/compat/linux/lkminit_emul.c +++ b/sys/lkm/compat/linux/lkminit_emul.c @@ -1,4 +1,4 @@ -/* $NetBSD: lkminit_emul.c,v 1.6 2005/12/11 12:24:47 christos Exp $ */ +/* $NetBSD: lkminit_emul.c,v 1.7 2007/12/19 20:31:36 dsl Exp $ */ /*- * Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -37,7 +37,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: lkminit_emul.c,v 1.6 2005/12/11 12:24:47 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: lkminit_emul.c,v 1.7 2007/12/19 20:31:36 dsl Exp $"); #include <sys/param.h> #include <sys/sysctl.h> @@ -51,7 +51,7 @@ __KERNEL_RCSID(0, "$NetBSD: lkminit_emul.c,v 1.6 2005/12/11 12:24:47 christos Ex extern const struct emul emul_linux; -int compat_linux_lkmentry __P((struct lkm_table *, int, int)); +int compat_linux_lkmentry(struct lkm_table *, int, int); /* * declare the emulation @@ -61,8 +61,8 @@ MOD_COMPAT("compat_linux", -1, &emul_linux); /* * take care of emulation specific sysctl nodes */ -static int load __P((struct lkm_table *, int)); -static int unload __P((struct lkm_table *, int)); +static int load(struct lkm_table *, int); +static int unload(struct lkm_table *, int); static struct sysctllog *_compat_linux_log, *_emul_linux_log; extern struct sysctlnode linux_sysctl_root; |
