1 /* $NetBSD: compat___ntp_gettime30.c,v 1.2 2009/01/11 02:46:26 christos Exp $ */
2 
3 #include <sys/cdefs.h>
4 #if defined(LIBC_SCCS) && !defined(lint)
5 __RCSID("$NetBSD: compat___ntp_gettime30.c,v 1.2 2009/01/11 02:46:26 christos Exp $");
6 #endif /* LIBC_SCCS and not lint */
7 
8 #define __LIBC12_SOURCE__
9 
10 #include <sys/time.h>
11 #include <sys/timex.h>
12 #include <compat/sys/timex.h>
13 
14 __warn_references(__ntp_gettime30,
15     "warning: reference to compatibility __ntp_gettime30(); include <sys/timex.h> for correct reference")
16 
17 int
__ntp_gettime30(struct ntptimeval50 * ontvp)18 __ntp_gettime30(struct ntptimeval50 *ontvp)
19 {
20 	struct ntptimeval ntv;
21 	int res;
22 
23 	res = __ntp_gettime50(&ntv);
24 	ontvp->time.tv_sec = (int32_t)ntv.time.tv_sec;
25 	ontvp->time.tv_nsec = ntv.time.tv_nsec;
26 	ontvp->maxerror = ntv.maxerror;
27 	ontvp->esterror = ntv.esterror;
28 
29 	return (res);
30 }
31