struct timespec在MSVC 2015 for x64 build中不起作用

时间:2016-05-20 13:35:43

标签: c

#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'

0 个答案:

没有答案