ref: 25d017440f96bd59227c56a902dc7c0bb3e23c4f
dir: /libnpe/gettimeofday.c/
#include <time.h>
#include "_npe.h"
int
gettimeofday(struct timeval *tp, struct timezone *tzp)
{
long long t;
USED(tzp);
t = npe_nanosec();
tp->tv_sec = t / Nsec;
tp->tv_usec = (t / 1000ULL) % Nmsec;
return 0;
}