C Struct - 字段的类型不完整

时间:2017-03-24 03:42:00

标签: c struct incomplete-type

在我的头文件中,我有这个

    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

我不明白这是怎么发生的。

1 个答案:

答案 0 :(得分:2)

#include <sys/time.h>