diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
commit | 8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch) | |
tree | ac9a52bace179e17769651fb9f805070d78abe5f /sys/arch/mvmeppc/dev/clock.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/arch/mvmeppc/dev/clock.c')
-rw-r--r-- | sys/arch/mvmeppc/dev/clock.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/mvmeppc/dev/clock.c b/sys/arch/mvmeppc/dev/clock.c index 604912e9dd4..c5cf7eb219a 100644 --- a/sys/arch/mvmeppc/dev/clock.c +++ b/sys/arch/mvmeppc/dev/clock.c @@ -1,4 +1,4 @@ -/* $OpenBSD: clock.c,v 1.3 2001/11/06 22:45:54 miod Exp $ */ +/* $OpenBSD: clock.c,v 1.4 2002/03/14 01:26:41 millert Exp $ */ /* $NetBSD: clock.c,v 1.1 1996/09/30 16:34:40 ws Exp $ */ /* @@ -61,7 +61,7 @@ static volatile u_long lasttb; #define YEAR0 1900 static u_long -chiptotime __P((int sec, int min, int hour, int day, int mon, int year)); +chiptotime(int sec, int min, int hour, int day, int mon, int year); struct chiptime { int sec; @@ -73,7 +73,7 @@ struct chiptime { int year; }; -static void timetochip __P((struct chiptime *c)); +static void timetochip(struct chiptime *c); /* * For now we let the machine run with boot time, not changing the clock |