#include #include "util.h" i64 make_timestamp(void){ struct timeval tv; gettimeofday(&tv,NULL); return tv.tv_sec*(i64)1000000+tv.tv_usec; }