当我们使用
gettimeofday(&time, NULL);时,会出现这样一个WARNING
Implicit declaration of function 'gettimeofday' is invalid in C99
而经过搜索之后发现只需加入
#include <sys/time.h>