当前位置: 代码迷 >> 综合 >> 解决编译过程中的strcpy/malloc/strlen incompatible警告
  详细解决方案

解决编译过程中的strcpy/malloc/strlen incompatible警告

热度:90   发布时间:2023-12-10 12:46:12.0

使用strcpy/malloc/strlen出现如下警告的时候

warning: incompatible implicit declaration of built-in function ‘strcpy’
可以通过在源文件中加入如下头文件解决

#include <string.h>

  相关解决方案