aboutsummaryrefslogtreecommitdiff
path: root/backends/wince/missing/sys/time.h
blob: ded29bb009c2f96a18e2e8f7cd7e866a616dbc17 (plain)
1
2
3
4
5
6
7
8
9
10
/* Header is not present in Windows CE SDK */

struct timeval
{
	int tv_sec;
	int tv_usec;
};

void gettimeofday(struct timeval* tp, void* dummy);
void usleep(long usec);