#include <sys/timeb.h>
#include "win32dep.h"

void gettimeofday(struct timeval *tv,void* time_zone) {
	struct _timeb cur;
	_ftime(&cur);
	tv->tv_sec = cur.time;
	tv->tv_usec = cur.millitm * 1000;
}
