#include <stdio.h>
#include <time.h>
#include <sys/time.h>

int main(int argc, char **argv)
{
	int i;

	for (i=0; i<1000000000; i++)
	{
#ifdef USE_GT
		struct timeval tv;
		gettimeofday(&tv, NULL);
#else
		time_t tv;
		tv = time(NULL);
#endif
	}

	return 0;
}
