Other Parts Discussed in Thread: CC2530
最近在移植一个c库,里面有个size_t类型,编译提示未定义,查了说是和平台相关的一个定义,在CC2530上这个定义成哪种类型合适?
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Other Parts Discussed in Thread: CC2530
最近在移植一个c库,里面有个size_t类型,编译提示未定义,查了说是和平台相关的一个定义,在CC2530上这个定义成哪种类型合适?
size_t是标准C库中定义的,应为unsigned int,在64位系统中为 long unsigned int。