freeswitch/libs/ldns/compat/gettimeofday.h

11 lines
228 B
C
Raw Normal View History

#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