aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/timetc.h
diff options
context:
space:
mode:
authorAlfred Perlstein <alfred@FreeBSD.org>2002-03-19 20:18:42 +0000
committerAlfred Perlstein <alfred@FreeBSD.org>2002-03-19 20:18:42 +0000
commit789f12fe69217e4b81da4c0f556e7edd21133f9a (patch)
tree233cfc0a5493dd5fb7407b0b8be25bcdc426772d /sys/sys/timetc.h
parentbe1673823fec2f9d75e18cf03c6ff04f671753ef (diff)
downloadsrc-789f12fe69217e4b81da4c0f556e7edd21133f9a.tar.gz
src-789f12fe69217e4b81da4c0f556e7edd21133f9a.zip
Notes
Diffstat (limited to 'sys/sys/timetc.h')
-rw-r--r--sys/sys/timetc.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/sys/timetc.h b/sys/sys/timetc.h
index 3630908920cb..151cfd61bb25 100644
--- a/sys/sys/timetc.h
+++ b/sys/sys/timetc.h
@@ -65,8 +65,8 @@
*/
struct timecounter;
-typedef unsigned timecounter_get_t __P((struct timecounter *));
-typedef void timecounter_pps_t __P((struct timecounter *));
+typedef unsigned timecounter_get_t(struct timecounter *);
+typedef void timecounter_pps_t(struct timecounter *);
struct timecounter {
/* These fields must be initialized by the driver. */
@@ -93,10 +93,10 @@ struct timecounter {
#ifdef _KERNEL
extern struct timecounter *volatile timecounter;
-void tc_init __P((struct timecounter *tc));
-void tc_setclock __P((struct timespec *ts));
-void tc_windup __P((void));
-void tc_update __P((struct timecounter *tc));
+void tc_init(struct timecounter *tc);
+void tc_setclock(struct timespec *ts);
+void tc_windup(void);
+void tc_update(struct timecounter *tc);
#endif /* !_KERNEL */
#endif /* !_SYS_TIMETC_H_ */