forked from Mirrors/freeswitch
11 lines
228 B
C
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 |