Hi,
As far as I know PK51 will compile and link non-use functions though the comiler issues a warning. It seems that PK166 does not compile and link non-use functions, is that correct ?
Daniel
a) An unused static function will be not be linked. b) An unused non-static function will be linked if it is part of an object file. c) An unused non-static function will not be linked if it is part of a library.
Both unused static and non-static functions will always be compiled.
Thomas