![]() ![]() | ![]() |
ntp 4.2.6p5
#ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ntp_syslog.h" #include "ntp_stdlib.h" #include "clockstuff.h" int gettimeofday( struct timeval *tv, int ignored ) { struct timespec ts; UNUSED_ARG(ignored); getclock(TIMEOFDAY, &ts); tv->tv_sec = ts.tv_sec; tv->tv_usec = ts.tv_nsec / 10; return 0; }