summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorbriggs <briggs@cvs.openbsd.org>1996-06-09 03:40:37 +0000
committerbriggs <briggs@cvs.openbsd.org>1996-06-09 03:40:37 +0000
commit1b703b781123ee23247753b9a8ace2a58e1339a4 (patch)
treed82e6004455a052ca451550f805231de268d0861 /sys
parentdcdfe0d629eca8df0b65cb49dada5f2adada8542 (diff)
Add prototype for hardupdate() ifdef NTP.
Diffstat (limited to 'sys')
-rw-r--r--sys/sys/systm.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/sys/systm.h b/sys/sys/systm.h
index 571f0f6983b..75dfe191581 100644
--- a/sys/sys/systm.h
+++ b/sys/sys/systm.h
@@ -1,5 +1,5 @@
-/* $OpenBSD: systm.h,v 1.5 1996/05/02 13:14:59 deraadt Exp $ */
-/* $NetBSD: systm.h,v 1.49 1996/04/22 01:23:35 christos Exp $ */
+/* $OpenBSD: systm.h,v 1.6 1996/06/09 03:40:36 briggs Exp $ */
+/* $NetBSD: systm.h,v 1.50 1996/06/09 04:55:09 briggs Exp $ */
/*-
* Copyright (c) 1982, 1988, 1991, 1993
@@ -181,6 +181,9 @@ struct clockframe;
void hardclock __P((struct clockframe *frame));
void softclock __P((void));
void statclock __P((struct clockframe *frame));
+#ifdef NTP
+void hardupdate __P((long offset));
+#endif
void initclocks __P((void));
void inittodr __P((time_t));