在我的头文件中,我有这个
typedef struct _client_value
{
int client_id;
struct timeval t;
size_t size;
char value[0];
} client_value;
我已经加入了<time.h>
,但在编译时,它说:field 't' has incomplete type struct timeval t
。
我不明白这是怎么发生的。
答案 0 :(得分:2)
其#include <sys/time.h>