#include <stdio.h>
struct timeval {
long tv_sec; // seconds
long tv_usec; // microseconds
};
int main() {
struct timeval tv;
tv.tv_sec = 0;
// tv_usec represented as the number of microseconds
// 1 microseconds = 0.001 milliseconds
// 10000 microseconds = 10 milliseconds
tv.tv_usec = 10000;
return 0;
}
/*
run:
*/