Remove __P.

This commit is contained in:
rjs 2006-05-09 17:59:33 +00:00
parent 1262ffef31
commit 61dae3ad06

View File

@ -1,4 +1,4 @@
/* $NetBSD: clockvar.h,v 1.2 2005/12/11 12:17:50 christos Exp $ */
/* $NetBSD: clockvar.h,v 1.3 2006/05/09 17:59:33 rjs Exp $ */
/*
* Copyright (c) 1994, 1995 Carnegie-Mellon University.
@ -54,9 +54,9 @@ struct clocktime {
* chip-dependent routines.
*/
struct clockfns {
void (*cf_init) __P((struct device *));
void (*cf_get) __P((struct device *, time_t, struct clocktime *));
void (*cf_set) __P((struct device *, struct clocktime *));
void (*cf_init)(struct device *);
void (*cf_get)(struct device *, time_t, struct clocktime *);
void (*cf_set)(struct device *, struct clocktime *);
};
void clockattach __P((struct device *, const struct clockfns *));
void clockattach(struct device *, const struct clockfns *);