home *** CD-ROM | disk | FTP | other *** search
- #include <syscall.h>
- #include <sys/timex.h>
- #include <linux/timex.h>
-
- inline static
- _syscall1(int, adjtimex, struct timex *, ntx);
-
- int
- __ntp_gettime (struct ntptimeval * ntv)
- {
- struct timex tntx;
- int result;
-
- result = adjtimex(&tntx);
- ntv->time = tntx.time;
- ntv->maxerror = tntx.maxerror;
- ntv->esterror = tntx.esterror;
- return result;
- }
-