freeswitch/libs/ldns/compat/gettimeofday.h
2011-03-25 11:46:58 -05:00

11 lines
228 B
C

#ifndef HAVE_GETTIMEOFDAY
struct timezone
{
int tz_minuteswest; /* minutes W of Greenwich */
int tz_dsttime; /* type of dst correction */
};
int gettimeofday(struct timeval *tv, struct timezone *tz);
#endif