Module Name: src
Committed By: drochner
Date: Sun Sep 12 16:07:40 UTC 2010
Modified Files:
src/sys/sys: systm.h
Log Message:
add a forward struct declaration for the PPS_SYNC case
To generate a diff of this commit:
cvs rdiff -u -r1.241 -r1.242 src/sys/sys/systm.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/sys/systm.h
diff -u src/sys/sys/systm.h:1.241 src/sys/sys/systm.h:1.242
--- src/sys/sys/systm.h:1.241 Sun Aug 22 14:12:10 2010
+++ src/sys/sys/systm.h Sun Sep 12 16:07:40 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: systm.h,v 1.241 2010/08/22 14:12:10 pgoyette Exp $ */
+/* $NetBSD: systm.h,v 1.242 2010/09/12 16:07:40 drochner Exp $ */
/*-
* Copyright (c) 1982, 1988, 1991, 1993
@@ -301,6 +301,7 @@
#ifdef NTP
void ntp_init(void);
#ifdef PPS_SYNC
+struct timespec;
void hardpps(struct timespec *, long);
#endif /* PPS_SYNC */
#else