> If one has a function which is sometimes called as a procedure
> (ignoring returned value) is there a way to tell lint not to
> complain about this?
Cast the result to (void) when you call the function as a procedure, i.e.
int foo (x)
int x;
{
return x;
}
main ()
{
(void) foo (2);
}
Arch D. Robison