在头文件中添加如下定义:
#ifndef _CRT_NO_TIME_T
struct timespec
{
time_t tv_sec; // Seconds - >= 0
long tv_nsec; // Nanoseconds - [0, 999999999]
};
#endif
该代码摘自:time.h文件,不清楚为什么直接包含time.h文件仍然找不到定义
原文地址:http://blog.51cto.com/fengyuzaitu/2103886
时间: 2024-10-24 15:37:01