当前位置: 技术问答>linux和unix
大家来看看这个错误,如何解决。(分不够再加)
来源: 互联网 发布时间:2015-02-20
本文导语: Error 328: "./source/wapv1.cpp", line 726 # Function 'bzero' has not been defined yet; cannot call. bzero(data,data_sz); ^^^^^ 原文件中我已经包含了strings.h。 是不是该加进某个库? | 编译的...
Error 328: "./source/wapv1.cpp", line 726 # Function 'bzero' has not been defined yet; cannot
call.
bzero(data,data_sz);
^^^^^
原文件中我已经包含了strings.h。
是不是该加进某个库?
call.
bzero(data,data_sz);
^^^^^
原文件中我已经包含了strings.h。
是不是该加进某个库?
|
编译的时候连接你的.o或者lib或者so .
|
bzero是在strings.h中定义的,不过编译的时候需加上-lc选项
|
bzero一般用在socket程序中你也可以添加#include 而不用strings.h
|
SCO:#man bzero
cc . . . -lc
#include
^^^^^^^^^^^^^^^^^^^^^^^^^
在sco环境下。
加上 cc -c yourname.c -lc
cc . . . -lc
#include
^^^^^^^^^^^^^^^^^^^^^^^^^
在sco环境下。
加上 cc -c yourname.c -lc