static int sense(double X)
{
....
}
static double error(double guess, scicos_block *blk)
{
....
}
void vert(scicos_block *blk, int flag)
{
switch (flag)
{
case 0:
error(xxxxx , blk);
}
When compiling I am using the following:
ilib_for_link('vert','vert.o',[],'c','Makelib','loader.sce','','','-
g');
It seems to me that the other functions are not properly compiled
using the above structure. Any help in this regard will be really
appreciated. Thanks.