1. 程式人生 > >使用未定義的 struct“timespec” 解決方案

使用未定義的 struct“timespec” 解決方案

timespec

在頭文件中添加如下定義:

#ifndef _CRT_NO_TIME_T

struct timespec

{

time_t tv_sec; // Seconds - >= 0

long tv_nsec; // Nanoseconds - [0, 999999999]

};

#endif


該代碼摘自:time.h文件,不清楚為什麽直接包含time.h文件仍然找不到定義


使用未定義的 struct“timespec” 解決方案