From 02cdf4d2c869ecfa1ae5484cf77eefe2fbcc6d94 Mon Sep 17 00:00:00 2001 From: dsl Date: Sat, 14 Mar 2009 14:45:51 +0000 Subject: Remove all the __P() from sys (excluding sys/dist) Diff checked with grep and MK1 eyeball. i386 and amd64 GENERIC and sys still build. --- sys/arch/atari/dev/ms.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sys/arch/atari/dev/ms.c') diff --git a/sys/arch/atari/dev/ms.c b/sys/arch/atari/dev/ms.c index 0007904e7c3..03e636e5c97 100644 --- a/sys/arch/atari/dev/ms.c +++ b/sys/arch/atari/dev/ms.c @@ -1,4 +1,4 @@ -/* $NetBSD: ms.c,v 1.21 2009/01/17 05:23:28 tsutsui Exp $ */ +/* $NetBSD: ms.c,v 1.22 2009/03/14 14:45:56 dsl Exp $ */ /* * Copyright (c) 1995 Leo Weppelman. @@ -52,7 +52,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: ms.c,v 1.21 2009/01/17 05:23:28 tsutsui Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ms.c,v 1.22 2009/03/14 14:45:56 dsl Exp $"); #include #include @@ -79,7 +79,7 @@ __KERNEL_RCSID(0, "$NetBSD: ms.c,v 1.21 2009/01/17 05:23:28 tsutsui Exp $"); #define NMOUSE 1 #endif -typedef void (*FPV) __P((void *)); +typedef void (*FPV)(void *); static struct ms_softc ms_softc[NMOUSE]; @@ -95,7 +95,7 @@ const struct cdevsw ms_cdevsw = { nostop, notty, mspoll, nommap, mskqfilter, }; -static void ms_3b_delay __P((struct ms_softc *)); +static void ms_3b_delay(struct ms_softc *); int mouseattach(cnt) -- cgit