>>>>> "Victor" == Victor Norman <vnor...@calvin.edu> writes:
Victor> I would like to tweak cpp to dump some usage stats from its symbol Victor> table -- like dumping which #defines were not used at all, etc. In addition to what Ian said, for this particular case, search for warn_unused_macros in libcpp. That will show you the implementation of a similar feature. Tom