#include <time.h>
struct timespec first_tm1;
int ts_compare(struct timespec *time1, struct timespec *time2)
{
if (time1->tv_sec < time2->tv_sec)
return -1; /* Less than. */
}
它提供以下内容:
错误C2079'thirst_tm1'使用未定义的struct'timespec'
'tv_sec'左侧的错误C2037指定未定义的struct / union'timespec'