We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
I build a library with m functions, I called n (n<m) functions, How can I avoid the warning:"Uncall function"?
This warning is bad news - you need to get rid of it or you'll soon run out of DATA space. You need to make sure that every function in the library resides alone in its own source file to prevent the linker linking in the uncalled functions. It's ok to put additional 'helper' functions in a source file provided that they are *all* called by the exported function and *none* of these 'helper' functions are called by any functions in other source files. Stefan