Old Microchip MCC Boilerplate for MSSP Requires C90 Compatibility Mode

I've figured out how to compile the new Microchip Foundation Services Library boilerplate code for implement I²C peripheral, only to learn it doesn't do what I wanted it to do. Well darn, it's time to go back to the tried-and-true I²C boilerplate code I've used in earlier projects. It's still there, it compiles with only the "this is outdated" warning, and I knew it worked well enough to be a good starting point for my projects. It was the tried-and-true known quantity that shouldn't give me any trouble at all.
Except it did.
The code compiled fine, but it didn't actually work. It would give a response to the first I²C query but then it would stop responding. Here's the default boilerplate code, which responds to address 0x08, as probed by a Raspberry Pi using i2cdetect
tool.
pi@raspberry:~ $ i2cdetect -y 1
0 1 2 3 4 5 6 7 8 9 a b c d e f
00: -- -- -- -- -- 08 -- -- -- -- -- -- --
10: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
30: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
40: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
50: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
60: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
70: -- -- -- -- -- -- -- --
That part looks good, the problem comes when we run the same tool again.
pi@raspberry:~ $ i2cdetect -y 1
0 1 2 3 4 5 6 7 8 9 a b c d e f
00: -- -- -- -- -- -- -- -- -- -- -- -- --
10: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
30: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
40: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
50: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
60: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
70: -- -- -- -- -- -- -- --
It has disappeared from scan, as it no longer responds to I²C commands sent to its address.
Comparing the I²C boilerplate code with my old LED project, I saw no differences worth mentioning. It should be the exact same code but it no longer does the exact same thing. What has changed between my old LED project and now?
Eventually I found the answer: Microchip has updated the XC8 compiler to C99, and this compiler update causes problems with existing code. I previously saw this in the form of compiler errors on an empty MCC-generated project. I no longer see compiler errors on an empty project template but arguably this is worse: no compiler errors but silent changes in behavior.
The solution is the same as before: change project properties so XC8 compiler uses its old C90 compatible mode. Once I switched over, the I²C boilerplate code functioned as expected.
Since Microchip has marked this old I²C boilerplate code as deprecated, I don't expect them to bring it up to date with the new compiler. And given its history of causing me headaches, I guess I'll plan on using C90 mode for all my projects for the foreseeable future.