43>>c语言错误信息

1、

warning: implicit declaration of function ‘malloc’ [-Wimplicit-function-declaration]

warning: incompatible implicit declaration of built-in function ‘malloc’ [enabled by default]  (矛盾的 含蓄的)

reason:  使用malloc时没有包含库stdlib.h

method:  添加库咯

 

2、

undefined reference to `err_ret'

reason:  想用这个函数来打印错误,结果这个函数没有定义

method:  改用printf()

你可能感兴趣的:(C语言)