1 /* $NetBSD: compat_ntp_gettime.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_gettime.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_gettime,
15     "warning: reference to compatibility ntp_gettime(); include <sys/timex.h> for correct reference")
16 
17 int
ntp_gettime(struct ntptimeval30 * ontvp)18 ntp_gettime(struct ntptimeval30 *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_usec = ntv.time.tv_nsec / 1000;
26 	ontvp->maxerror = ntv.maxerror;
27 	ontvp->esterror = ntv.esterror;
28 
29 	return (res);
30 }
31