summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorThorsten Lockert <tholo@cvs.openbsd.org>1997-03-06 07:05:55 +0000
committerThorsten Lockert <tholo@cvs.openbsd.org>1997-03-06 07:05:55 +0000
commit71d8b30d72fc42b35440abbd765824a961f47499 (patch)
tree192121367dc4f71fd4aaeed73099ca07d5d61072 /sys
parentf21892c10a407c4734f604601a959beefe4c30e6 (diff)
Prototype hardpps() if PPS_SYNC option is present
Diffstat (limited to 'sys')
-rw-r--r--sys/sys/systm.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/sys/systm.h b/sys/sys/systm.h
index 4743fac2ad4..757aa464ec2 100644
--- a/sys/sys/systm.h
+++ b/sys/sys/systm.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: systm.h,v 1.19 1997/01/18 13:39:28 mickey Exp $ */
+/* $OpenBSD: systm.h,v 1.20 1997/03/06 07:05:54 tholo Exp $ */
/* $NetBSD: systm.h,v 1.50 1996/06/09 04:55:09 briggs Exp $ */
/*-
@@ -200,6 +200,9 @@ void softclock __P((void));
void statclock __P((struct clockframe *));
#ifdef NTP
void hardupdate __P((long offset));
+#ifdef PPS_SYNC
+void hardpps __P((struct timeval *, long));
+#endif
#endif
void initclocks __P((void));