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/clock.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'sys/arch/atari/dev/clock.c') diff --git a/sys/arch/atari/dev/clock.c b/sys/arch/atari/dev/clock.c index b00d03cac7a..578392982c3 100644 --- a/sys/arch/atari/dev/clock.c +++ b/sys/arch/atari/dev/clock.c @@ -1,4 +1,4 @@ -/* $NetBSD: clock.c,v 1.42 2008/11/04 16:43:47 abs Exp $ */ +/* $NetBSD: clock.c,v 1.43 2009/03/14 14:45:56 dsl Exp $ */ /* * Copyright (c) 1982, 1990 The Regents of the University of California. @@ -77,7 +77,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: clock.c,v 1.42 2008/11/04 16:43:47 abs Exp $"); +__KERNEL_RCSID(0, "$NetBSD: clock.c,v 1.43 2009/03/14 14:45:56 dsl Exp $"); #include #include @@ -149,8 +149,8 @@ dev_type_close(rtcclose); dev_type_read(rtcread); dev_type_write(rtcwrite); -static void clockattach __P((struct device *, struct device *, void *)); -static int clockmatch __P((struct device *, struct cfdata *, void *)); +static void clockattach(struct device *, struct device *, void *); +static int clockmatch(struct device *, struct cfdata *, void *); CFATTACH_DECL(clock, sizeof(struct clock_softc), clockmatch, clockattach, NULL, NULL); @@ -162,9 +162,9 @@ const struct cdevsw rtc_cdevsw = { nostop, notty, nopoll, nommap, nokqfilter, }; -void statintr __P((struct clockframe)); +void statintr(struct clockframe); -static int twodigits __P((char *, int)); +static int twodigits(char *, int); static int divisor; /* Systemclock divisor */ -- cgit