• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test/scr031/src/
1#include <sys/types.h>
2#include <sys/time.h>
3
4#include "htimestampxa.h"
5
6void
7GetTime(HTimestampData *ts)
8{
9	struct timeval timeNow;
10
11	(void)gettimeofday(&timeNow, 0);
12	ts->Sec = timeNow.tv_sec;
13	ts->Usec = timeNow.tv_usec;
14}
15