错误:未知类型名称“intptr_t”
我在 MinGW 中编译 C 程序时收到此错误。据我所知,我认为 'intptr_t' 是 C99 标准中的一种类型。我没有包含文件吗?
I am receiving this error while compiling a C program in MinGW. As far as I know, I thought 'intptr_t' was a type in the C99 standard. Am I not including a file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要包含
stdint.h
。请注意,
intptr_t
和uintptr_t
确实是 C99 类型,但它们是可选的。You need to include
stdint.h
.Note that
intptr_t
anduintptr_t
are indeed C99 types but they are optional.