本文介绍了GCC linaro 编译器抛出错误“未知类型名称 size_t"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用 GCC Linaro 编译器来编译我的代码.它从 libio.h
抛出错误 unknown type name size_t
.它包含在 stdio.h
中.在我的代码中,我只包含 stdio.h
.
I am using GCC Linaro compiler for compiling my code. Its throwing the error unknown type name size_t
from libio.h
. Its included from stdio.h
. In my code I am just including stdio.h
.
任何人都可以请教如何解决这个错误.
Can any one please how to resolve this error.
推荐答案
根据 C99, §7.17,size_t
不是内置类型,而是在 代码>.
As per C99, §7.17, size_t
is not a builtin type but defined in <stddef.h>
.
包含 标头应该可以解决您的问题.
Including the <stddef.h>
header should fix your problem.
这篇关于GCC linaro 编译器抛出错误“未知类型名称 size_t"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!