error: implicit declaration of function 'reallocarray' [-Werror=implicit-function-declaration]
时间: 2023-06-28 15:08:37 浏览: 173
创建peer的错误:Failed to reach implicit threshold of 1 sub-policies, required 1 remaining
这个错误通常发生在使用C标准库中的reallocarray函数时,但是没有包含stdlib.h头文件。要解决这个问题,只需要在代码中添加以下行:
```c
#include <stdlib.h>
```
这将包含reallocarray函数的声明,消除隐式函数声明警告并允许编译器正确编译代码。
阅读全文