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